shabxs
shabxs
FFilament
Created by shabxs on 8/19/2024 in #❓┊help
Missing required parameter for multitenancy
I receive this error once I create a record . Missing required parameter for [Route: filament.app.resources.materials.edit] [URI: app/{tenant}/materials/{record}/edit] [Missing parameter: record]. here "app" is the panel name "tenant" is the tenant id "materials" is the resource name
5 replies
FFilament
Created by shabxs on 7/13/2024 in #❓┊help
How to access record in infolist
I have created a named infolist inside a relationmanager resource as below use Filament\Infolists\Components\TextEntry; use Filament\Infolists\Infolist; public function productInfolist(Infolist $infolist): Infolist { return $infolist ->record($this->product) // How to get access to the current record ->schema([ TextEntry::make('name'), TextEntry::make('category.name'), // ... ]); } How do i access the current record not the ownerrecord.
4 replies
FFilament
Created by shabxs on 7/2/2024 in #❓┊help
Searchable Table in a Livewire Component
Why searching not working when filament tables when used inside a livewire component outside filament panel.
7 replies
FFilament
Created by shabxs on 6/22/2024 in #❓┊help
Livewire pest plugin code replication
How can we get the same result using pest livewire plugin function Livewire::withQueryParams(['search' => 'hair']) ->test(SearchPosts::class) ->assertSee('Testing the first') ie livewire->(SearchPost::class)->assertSee('Testing the first') how do I use the query params in the second statement
5 replies
FFilament
Created by shabxs on 6/5/2024 in #❓┊help
Testing Filter Tabs
When Using tabs to filter the records, how can we test these filter functions.
8 replies
FFilament
Created by shabxs on 5/29/2024 in #❓┊help
Validating Signed Route Requests
When using filament forms on a livewire component and submitted, how do we verify that the request has come from the signed url. Basically how do we validate signed route request.
7 replies
FFilament
Created by shabxs on 5/22/2024 in #❓┊help
Testing Infolists headerAction
How do we test infolist headerAction which is on an ViewPage with infolist
8 replies
FFilament
Created by shabxs on 4/7/2024 in #❓┊help
Override make:filament-user command
What would be a better way to add custom field, like country, along with existing fields on make:filament-user command for generating a user
3 replies
FFilament
Created by shabxs on 3/25/2024 in #❓┊help
Multiple clicks create duplicate entry
When a form submit button is clicked multiple times, the form is being submitted multiple times and creating duplicate entries.. How to stop this behaviour...
7 replies