Itachi
Itachi
FFilament
Created by Itachi on 1/9/2024 in #❓┊help
how modify list page data
No description
4 replies
FFilament
Created by Itachi on 12/18/2023 in #❓┊help
How modify create button label
I would like to rename the 'Create' button to 'Submit'. How can I achieve that, sir?
19 replies
FFilament
Created by Itachi on 11/13/2023 in #❓┊help
how to call a custom function within the action method
In v2 the following code successfully calls a custom function using the 'action' method:
->action(fn () => $this->fillFormFields())
->action(fn () => $this->fillFormFields())
However, in version 3 this code no longer works. Could you please guide me on how to call a custom function within the action method in filament v3?
14 replies
FFilament
Created by Itachi on 11/9/2023 in #❓┊help
->reactive() method doesnot work on v3
->reactive() this method work on v2 but now it is not work on v3
6 replies
FFilament
Created by Itachi on 11/9/2023 in #❓┊help
Why in v3 action method donot call another function
Actions\CreateAction::make()
->label('Generate')
->action(fn () => $this->fillFormFields1())
Actions\CreateAction::make()
->label('Generate')
->action(fn () => $this->fillFormFields1())
this is my code i am trying to call "fillFormFields() " function when i click on generate button thenn it donot call fillformfield function, it works in v2 but now it doesnot work on v3 any one can help
13 replies
FFilament
Created by Itachi on 11/3/2023 in #❓┊help
How showing textfield in page
No description
5 replies
FFilament
Created by Itachi on 11/2/2023 in #❓┊help
How get data From url
"http://127.0.0.1:8000/dashboard/trainingSession?data=1" this is my url how i get data form url in this trainingSession page
4 replies
FFilament
Created by Itachi on 11/2/2023 in #❓┊help
How redirect to another resources page
->action( static function (Component $component,$data) {
// return redirect()->route('filament.auth.login',$data);
return redirect()->route('Filament/Resources/MaterialResource.php',$data);
});
->action( static function (Component $component,$data) {
// return redirect()->route('filament.auth.login',$data);
return redirect()->route('Filament/Resources/MaterialResource.php',$data);
});
when i click on submit button i want it redirect to Filament/Resources/MaterialREsource.php file but donot use any controller and function how can i do this
14 replies
FFilament
Created by Itachi on 11/1/2023 in #❓┊help
How dynamic page rendering in filament
How dynamic page render in filament please give me suggestion you just pass id with slug according to that dynamic page render how you implement this functionlity i? create a new page or modify code how it work thank you in advance
5 replies
FFilament
Created by Itachi on 10/31/2023 in #❓┊help
How remove this submit button
No description
17 replies
FFilament
Created by Itachi on 10/20/2023 in #❓┊help
Waiting for size & loading infinity times
i upload a image then it store in database and also show in column table but when i click on edit then it donot show and write their waiting for size and it is loading infinity time i had also change .env file like APP_URL=http://localhost:8000 and also php artisan storage:link but image still loading donot show in edit page also donot show edit option on image
5 replies