shabxs
shabxs
FFilament
Created by shabxs on 8/19/2024 in #❓┊help
Missing required parameter for multitenancy
If you are asking about CreateMaterial.php file inside pages.. No, havent touched it...
also thing is .. when i refresh the page which shows error... the resource gets saved successfully....
5 replies
FFilament
Created by shabxs on 7/2/2024 in #❓┊help
Searchable Table in a Livewire Component
Thanks verymuch @toeknee @Dennis Koch for the guidance...... Got things done......
7 replies
FFilament
Created by shabxs on 7/2/2024 in #❓┊help
Searchable Table in a Livewire Component
True, js not loading :-)..... but livewire scripts loading...not of filaments.. additional settings or should load it manually... ?
7 replies
FFilament
Created by shabxs on 6/22/2024 in #❓┊help
Livewire pest plugin code replication
Right... Thanks...
5 replies
FFilament
Created by shabxs on 6/5/2024 in #❓┊help
Testing Filter Tabs
I wanted to test assertCanSeeTableRecords() assertCanNotSeeTableRecords() on all available tabs
8 replies
FFilament
Created by shabxs on 5/29/2024 in #❓┊help
Validating Signed Route Requests
When I create a signed route which expires in 5 minutes and the url has form to submit but once the users clicks the link and stays longer than 5 mins, even when the url is expired, the user is able to make a post request..
7 replies
FFilament
Created by shabxs on 5/29/2024 in #❓┊help
Validating Signed Route Requests
Thanks. I have done that on get route... Working perfectly. My doubt is how do validate incoming request. As in Laravel docs use Illuminate\Http\Request; Route::get('/unsubscribe/{user}', function (Request $request) { if (! $request->hasValidSignature()) { abort(401); } // ... })->name('unsubscribe'); As in livewire form submission is not usual laravel post request
7 replies
FFilament
Created by shabxs on 5/22/2024 in #❓┊help
Testing Infolists headerAction
Thanks for that quick reply... testing worked.. Also it seems that instead of 'key' we can also use 'id'. I believe both serve the same purpose
8 replies
FFilament
Created by shabxs on 5/22/2024 in #❓┊help
Testing Infolists headerAction
I wanted to test this updateStatus action on a section header of infolist.
8 replies
FFilament
Created by shabxs on 5/22/2024 in #❓┊help
Testing Infolists headerAction
return $infolist ->schema([ Section::make('DETAILS AND STATUS') ->headerActions( [ Action::make('updateStatus') ->fillForm(fn (Program $record): array => [ 'ProgramStatus' => $record->status, ]) ->form([ Select::make('ProgramStats') ->label('Program Status') ->options(fn() => ProgramStatus::class) ->required(), ]) ->action(function (array $data, Program $record): void { $record->status = $data['ProgramStatus'] ; $record->save(); }),
8 replies
FFilament
Created by shabxs on 3/25/2024 in #❓┊help
Multiple clicks create duplicate entry
Found any way to avoid it... ?
7 replies