Sydd
Sydd
FFilament
Created by thexyn on 11/1/2024 in #❓┊help
can change for this label?
On the list page override breadcrumb method
5 replies
FFilament
Created by Hirushan on 11/28/2023 in #❓┊help
Create Invoices
in my case i used TCPDF before, and now using Spatie Laravel PDF
3 replies
FFilament
Created by RawaN on 10/12/2024 in #❓┊help
Is possible have an input can be select and text input in same time ?
Try use afterStateUpdate ... and Get / Set
5 replies
FFilament
Created by Jospeh on 10/11/2024 in #❓┊help
XSS Protection with "amidesfahani/filament-tinyeditor" in Laravel Filament V3
Maybe use Purifier in lifecycle hook.. beforeCreate..
7 replies
FFilament
Created by Xavi on 9/27/2024 in #❓┊help
How to send parameter to CreateAction?
Few days ago, I do something like that.., on the relationmanager table have a table header action Tables\Actions\CreateAction::make() ->label(__('general.create') . ' ' . lcfirst(__('general.record'))) ->icon(MedicalExamResource::getNavigationIcon()) ->url(MedicalExamResource::getUrl('create', ['employee' => $this->getOwnerRecord()->id])), Next on the create page protected function fillForm(): void { if(request()->employee) { $employee = Employee::find(request()->employee); $this->form->fill([ 'customer_id' => $employee->customer_id, 'employee_id' => $employee->id, 'type' => $employee->medicalExams->isEmpty() ? 'entry' : 'periodic', 'job_factors' => JobFactorService::getEmployeeJobFactorsToFillMedicalExamFormSelect($employee), 'job_activities' => JobActivitiesService::getEmployeeJobActivitiesToFillMedicalExamFormSelect($employee), ]); } else { $defaultCustomerId = MedicalExamService::getCustomersWithAllowedMedicalExamsCountByRole() === 1 ? MedicalExamService::getCustomersWithAllowedMedicalExamsIdsByRole()[0] : null; $this->form->fill([ 'customer_id' => $defaultCustomerId, 'employee_id' => null, 'type' => null, 'job_factors' => [], 'job_activities' => [], ]); } }
9 replies
FFilament
Created by nuovo2023 on 9/27/2024 in #❓┊help
Custom Action successRedirectUrl
protected function getFormActions(): array { return [ Action::make('save') ->label(__('filament-panels::resources/pages/edit-record.form.actions.save.label')) ->submit('save') ->after(function ($record) { redirect(SomeResource::getUrl('view', ['record' => $record])); }), ]; }
12 replies
FFilament
Created by nuovo2023 on 9/27/2024 in #❓┊help
Custom Action successRedirectUrl
try:
12 replies
FFilament
Created by Broemi on 9/30/2024 in #❓┊help
Breadcrumps
try use on resource -> protected static ?string $recordTitleAttribute = 'name';
13 replies
FFilament
Created by Sydd on 9/8/2024 in #❓┊help
Requiredif multi select is empty
Thanks bro, this is also one possibility of achieving the result
5 replies
FFilament
Created by Sydd on 9/6/2024 in #❓┊help
Change label font weight globally
Thanks Leandro 😄
5 replies
FFilament
Created by Proks D on 7/24/2024 in #❓┊help
Disable Wizard Header Click
->skipable(false)
5 replies
FFilament
Created by Sydd on 6/19/2024 in #❓┊help
global search sort results
Great !!! thank you !!!
5 replies
FFilament
Created by Sydd on 5/27/2024 in #❓┊help
Two navigation badges
i think too, browse across documentation and google, but i find only one possible badge. thanks aws 🙂
4 replies
FFilament
Created by Asmit Nepali on 5/23/2024 in #❓┊help
Is it possible to make select input invisible but send the default value with the form submit ?
Or hidden input?
7 replies
FFilament
Created by Alnuaimi on 11/30/2023 in #❓┊help
The Shiled Roles Not work with Activity Log
I am createing next panel and let the settings and logs and health to them. And only super admin can acces this panel. Ofc use the panel switch plugin.
5 replies
FFilament
Created by Sydd on 5/21/2024 in #❓┊help
Spatie media libary and S3 -> disk cannot be accesed
programming is only my hobby 🙂 mayby i will change it to some sport activity 🙂
13 replies
FFilament
Created by Sydd on 5/21/2024 in #❓┊help
Spatie media libary and S3 -> disk cannot be accesed
now i'm smiling that i am seriously idiot, i lost my 3 days of life 🙂 and a lot of mental capacity.
13 replies
FFilament
Created by Sydd on 5/21/2024 in #❓┊help
Spatie media libary and S3 -> disk cannot be accesed
Okay, so after installing Laravel Herd and running the application using Homestead, everything works as it should. Using the regular php artisan serve did not work. I apologize for the unnecessary troubles. @toeknee thanks.
13 replies
FFilament
Created by Sydd on 5/21/2024 in #❓┊help
Spatie media libary and S3 -> disk cannot be accesed
So, when i try upload files from live server, it works, probably problem is that on the computer is sending / getting without SSL ..., please anybody know how to solve ? or how to create SSL for artisan:serve / localhost ? my PC operating system is win 11.
13 replies
FFilament
Created by Sydd on 5/21/2024 in #❓┊help
Spatie media libary and S3 -> disk cannot be accesed
Thanks for answer, add it, but still the same problem.
13 replies