Nashoba
Nashoba
FFilament
Created by Nashoba on 3/27/2025 in #❓┊help
Add logout navigationItem to sidebar
Thank you !
3 replies
FFilament
Created by Nashoba on 3/26/2025 in #❓┊help
How to change a column in users table after reseting password ? (like last_change_password) ?
ok I found the issue, I used updated instead of updating
7 replies
FFilament
Created by Nashoba on 3/26/2025 in #❓┊help
How to change a column in users table after reseting password ? (like last_change_password) ?
ok so I made the same thing as you :
public function updated(User $user): void
{
if ($user->isDirty('password')) {
$user->last_change_password = $user->updated_at;
$user->save();
}
}


and I add the $user->save();
public function updated(User $user): void
{
if ($user->isDirty('password')) {
$user->last_change_password = $user->updated_at;
$user->save();
}
}


and I add the $user->save();
without it's not saving the data in the db but with it is loading infinitely
7 replies
FFilament
Created by Nashoba on 3/26/2025 in #❓┊help
How to change a column in users table after reseting password ? (like last_change_password) ?
Ok thank you i try this !
7 replies
FFilament
Created by Nashoba on 3/21/2025 in #❓┊help
Should we duplicate code to make wizard edit steps ?
Ok it makes sense
7 replies
FFilament
Created by Nashoba on 3/21/2025 in #❓┊help
Should we duplicate code to make wizard edit steps ?
like I made steps for my resource so I removed the form in the main resource file, and I made it in createResource file. Should I do it in the main file, or I need to keep step in this file and copy the code in EditResource
7 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
It is not possible to use a variable inside the make() of a FileUpload field ?
with this in the file : if ($key === '') { \Log::error('Synthesizer error', ['context' => $context, 'path' => $path]); throw new \Exception('No synthesizer found for key: "'.$key.'"'); }
12 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
It is not possible to use a variable inside the make() of a FileUpload field ?
I got this :
[2025-02-27 13:52:47] local.ERROR: Synthesizer error {"context":{"Livewire\\Mechanisms\\HandleComponents\\ComponentContext":{"effects":[],"memo":[],"component":{"mountedActions":[],"mountedActionsArguments":[],"mountedActionsData":[],"defaultAction":null,"defaultActionArguments":null,"componentFileAttachments":[],"mountedFormComponentActions":[],"mountedFormComponentActionsArguments":[],"mountedFormComponentActionsData":[],"mountedFormComponentActionsComponents":[],"mountedInfolistActions":[],"mountedInfolistActionsData":[],"mountedInfolistActionsComponent":null,"mountedInfolistActionsInfolist":null,"record":null,"data":{"operative_day_id":"1","doctor_id":11,"hour":null,"last_name":null,"first_name":null,"birth_date":null,"left_eye_surgery_type_id":"6","left_refraction_sphere":null,"left_refraction_cylinder":null,"left_refraction_axis":null,"left_white_to_white":null,"left_pupil_scotopic":null,"left_keratometry_3mm_k1":null,"left_keratometry_3mm_axis":null,"left_keratometry_3mm_k2":null,"left_keratometry_3mm_axis_2":null,"left_revision_needed":false,"left_comment":"","left_pdf":"","left_dominant_eye":"left","left_presbyopia_addition":null,"left_pupillary_offset":null,"left_treatment_type":null,"right_eye_surgery_type_id":1,"right_refraction_sphere":null,"right_refraction_cylinder":null,"right_refraction_axis":null,"right_white_to_white":null,"right_pupil_scotopic":null,"right_keratometry_3mm_k1":null,"right_keratometry_3mm_axis":null,"right_keratometry_3mm_k2":null,"right_keratometry_3mm_axis_2":null,"right_revision_needed":false,"right_comment":null,"right_pdf":[],"right_dominant_eye":"left","right_presbyopia_addition":null,"right_pupillary_offset":null,"right_treatment_type":null,"files":[]},"previousUrl":"http://localhost:8000/patients/create?operative_day_id=1"},"mounting":false}},"path":"left_pdf.c31da495-ebdb-4832-bf3d-89767c93ed27"}
[2025-02-27 13:52:47] local.ERROR: Synthesizer error {"context":{"Livewire\\Mechanisms\\HandleComponents\\ComponentContext":{"effects":[],"memo":[],"component":{"mountedActions":[],"mountedActionsArguments":[],"mountedActionsData":[],"defaultAction":null,"defaultActionArguments":null,"componentFileAttachments":[],"mountedFormComponentActions":[],"mountedFormComponentActionsArguments":[],"mountedFormComponentActionsData":[],"mountedFormComponentActionsComponents":[],"mountedInfolistActions":[],"mountedInfolistActionsData":[],"mountedInfolistActionsComponent":null,"mountedInfolistActionsInfolist":null,"record":null,"data":{"operative_day_id":"1","doctor_id":11,"hour":null,"last_name":null,"first_name":null,"birth_date":null,"left_eye_surgery_type_id":"6","left_refraction_sphere":null,"left_refraction_cylinder":null,"left_refraction_axis":null,"left_white_to_white":null,"left_pupil_scotopic":null,"left_keratometry_3mm_k1":null,"left_keratometry_3mm_axis":null,"left_keratometry_3mm_k2":null,"left_keratometry_3mm_axis_2":null,"left_revision_needed":false,"left_comment":"","left_pdf":"","left_dominant_eye":"left","left_presbyopia_addition":null,"left_pupillary_offset":null,"left_treatment_type":null,"right_eye_surgery_type_id":1,"right_refraction_sphere":null,"right_refraction_cylinder":null,"right_refraction_axis":null,"right_white_to_white":null,"right_pupil_scotopic":null,"right_keratometry_3mm_k1":null,"right_keratometry_3mm_axis":null,"right_keratometry_3mm_k2":null,"right_keratometry_3mm_axis_2":null,"right_revision_needed":false,"right_comment":null,"right_pdf":[],"right_dominant_eye":"left","right_presbyopia_addition":null,"right_pupillary_offset":null,"right_treatment_type":null,"files":[]},"previousUrl":"http://localhost:8000/patients/create?operative_day_id=1"},"mounting":false}},"path":"left_pdf.c31da495-ebdb-4832-bf3d-89767c93ed27"}
12 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
It is not possible to use a variable inside the make() of a FileUpload field ?
I'll check for the breakpoint, thank you !
12 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
It is not possible to use a variable inside the make() of a FileUpload field ?
I tried to add it to see if it changes something after but it does nothing, I will remove it
12 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
It is not possible to use a variable inside the make() of a FileUpload field ?
and it works very well exept for file upload
12 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
It is not possible to use a variable inside the make() of a FileUpload field ?
the thing is I try to make a dynamic form for this cause I need it twice,it works very well for my other fields with this in CreatePatient :
protected function mutateFormDataBeforeCreate(array $data): array
{
$leftEyeSurgery = new EyeSurgery();
$leftEyeSurgery->surgery_type_id = SurgeryType::query()->where('id', $data['left_eye_surgery_type_id'])->first()->id;
$leftEyeFields = new SurgeryField();
foreach ($data as $key => $value) {
if (str_starts_with($key, 'left_') && $key !== 'left_eye_surgery_type_id') {
$cleanKey = str_replace('left_', '', $key);
$leftEyeFields->$cleanKey = $value;
}
}
$leftEyeFields->save();
$leftEyeSurgery->surgery_fields_id = $leftEyeFields->id;
$leftEyeSurgery->save();

$rightEyeSurgery = new EyeSurgery();
$rightEyeSurgery->surgery_type_id = SurgeryType::query()->where('id', $data['right_eye_surgery_type_id'])->first()->id;
$rightEyeFields = new SurgeryField();
foreach ($data as $key => $value) {
if (str_starts_with($key, 'right_') && $key !== 'right_eye_surgery_type_id') {
$cleanKey = str_replace('right_', '', $key);
$rightEyeFields->$cleanKey = $value;
}
}
$rightEyeFields->save();
$rightEyeSurgery->surgery_fields_id = $rightEyeFields->id;
$rightEyeSurgery->save();

$data['left_eye_surgery_id'] = $leftEyeSurgery->id;
$data['right_eye_surgery_id'] = $rightEyeSurgery->id;

return $data;
}
protected function mutateFormDataBeforeCreate(array $data): array
{
$leftEyeSurgery = new EyeSurgery();
$leftEyeSurgery->surgery_type_id = SurgeryType::query()->where('id', $data['left_eye_surgery_type_id'])->first()->id;
$leftEyeFields = new SurgeryField();
foreach ($data as $key => $value) {
if (str_starts_with($key, 'left_') && $key !== 'left_eye_surgery_type_id') {
$cleanKey = str_replace('left_', '', $key);
$leftEyeFields->$cleanKey = $value;
}
}
$leftEyeFields->save();
$leftEyeSurgery->surgery_fields_id = $leftEyeFields->id;
$leftEyeSurgery->save();

$rightEyeSurgery = new EyeSurgery();
$rightEyeSurgery->surgery_type_id = SurgeryType::query()->where('id', $data['right_eye_surgery_type_id'])->first()->id;
$rightEyeFields = new SurgeryField();
foreach ($data as $key => $value) {
if (str_starts_with($key, 'right_') && $key !== 'right_eye_surgery_type_id') {
$cleanKey = str_replace('right_', '', $key);
$rightEyeFields->$cleanKey = $value;
}
}
$rightEyeFields->save();
$rightEyeSurgery->surgery_fields_id = $rightEyeFields->id;
$rightEyeSurgery->save();

$data['left_eye_surgery_id'] = $leftEyeSurgery->id;
$data['right_eye_surgery_id'] = $rightEyeSurgery->id;

return $data;
}
12 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
It is not possible to use a variable inside the make() of a FileUpload field ?
not really, here is my entire file :
12 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
I'm quite new at using Filament (two or three weeks ago) and the documentation is really relevant and helpful, it's easy to understand and quite complete, maybe add some videos would be great since Filament is very visual and understandable in videos we can find. In any case thank you for your work, it has revolutionized my way of working with php
69 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
Passing ID to a custom header action in show page
Should I use a relation manager ?
3 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
Passing ID to a custom header action in show page
The thing is that I don't know how to retrieve the Main ID inside PatientResource
3 replies
FFilament
Created by Nashoba on 2/26/2025 in #❓┊help
No synthesizer found for key: "" on FileUpload
13 replies
FFilament
Created by Nashoba on 2/26/2025 in #❓┊help
No synthesizer found for key: "" on FileUpload
In my generateEyeTab I have then my FileUpload
13 replies
FFilament
Created by Nashoba on 2/26/2025 in #❓┊help
No synthesizer found for key: "" on FileUpload
I have this : ->tabs([ self::generateEyeTab('left'), self::generateEyeTab('right'), ]) with : protected static function generateEyeTab(string $eye): Forms\Components\Tabs\Tab I don't know if it's the right way to do it
13 replies
FFilament
Created by Nashoba on 2/26/2025 in #❓┊help
No synthesizer found for key: "" on FileUpload
Same error as the beginning
13 replies