zenepay
zenepay
FFilament
Created by zenepay on 6/18/2024 in #❓┊help
How to use Repeater in RelationManager form with MorpTo model
No description
2 replies
FFilament
Created by zenepay on 6/15/2024 in #❓┊help
How to group table list by one to many relationship field
No description
2 replies
FFilament
Created by zenepay on 6/10/2024 in #❓┊help
How to make Table widget with merge 2 sources of data
I m trying to create a widget of summary income expenses. But incomes could come from 2 models 2 tables with different table structures. I want to create a new custom table to list daily incomes from 2 database tables in one Table widget with date sorting. Please advise how I make $table->query for this. php public function table(Table $table): Table { return $table ->query( fn (Builder $query) => $query->where('user_id', auth()->id()) ->orderByDesc('created_at') ->limit(5) ) ->columns([ // ... ]); }
2 replies
FFilament
Created by zenepay on 6/7/2024 in #❓┊help
Form does not display filled data.
No description
7 replies
FFilament
Created by zenepay on 5/28/2024 in #❓┊help
Livewire modal does not pop to top layer
No description
5 replies
FFilament
Created by zenepay on 5/24/2024 in #❓┊help
How to load page in SPA after Modal Action
No description
2 replies
FFilament
Created by zenepay on 5/22/2024 in #❓┊help
Is there anyway to reload RelationManager Owner page with Spa mode?
No description
7 replies
FFilament
Created by zenepay on 5/20/2024 in #❓┊help
I try to seed using has function for relationship but does not create child record.
I can propertyServices separately, it works. I wonder what I made wrong on using has in PropertySeeder #factory #seeder
7 replies
FFilament
Created by zenepay on 5/20/2024 in #❓┊help
Form does not revalidate after change value
I have set unique(ignoreRecord:true), when it to validate with red message the submit button is also disabled. The problem is even I have change the value of the field to unique value, but the validation does not recheck and submit button is still disabled. Please advise how I could cope this.
5 replies
FFilament
Created by zenepay on 5/20/2024 in #❓┊help
How modify rule for unique() when it must be unique if another field eg group are the same?
I have a house that belongs to a villege. In the same villege house_no must be unique but in different villege house_no can be the same. I tried to use ->unique( modifyRuleUsing: fn() =>...) but I don't know how to set this up. Please advise. #unique #✅┊rules
4 replies
FFilament
Created by zenepay on 5/9/2024 in #❓┊help
css has preload warning aftter adding to ApplServiceProvider with hook. How to fix this?
No description
2 replies
FFilament
Created by zenepay on 5/4/2024 in #❓┊help
Working fine in local environment but fail on server
No description
10 replies
FFilament
Created by zenepay on 5/3/2024 in #❓┊help
How I can enable the Relation Manager Action in view mode?
No description
5 replies
FFilament
Created by zenepay on 4/28/2024 in #❓┊help
Having issues with spa() and https and logout
When put URL::forceScheme('https') in boot() in AppServiceProvider, my panel spa() does not work. But when I remove URL::forceScheme('https') I cannot click Logout. It returns The GET method is not supported for route admin/logout. Supported methods: POST. I found that the logout function send http:// instead so it does not work with https url. Please advise how I can handdle the logout function to work, so I can remove URL::forceSechema('https') #logout #spa #https
2 replies
FFilament
Created by zenepay on 4/27/2024 in #❓┊help
spa mode does not seem to work with Laravel 11
I had observed that the Spa() does not get affect to the site. It just like without using spa(), the page was fully loaded just like refresh. It works well with my code in Laravel 10. Does anyone got this issue? how to fix it. #spa
4 replies
FFilament
Created by zenepay on 4/21/2024 in #❓┊help
Logout error.
No description
9 replies
FFilament
Created by zenepay on 4/20/2024 in #❓┊help
Got issues of CORS due to https and http call
No description
9 replies