Uma
Uma
FFilament
Created by Uma on 9/10/2024 in #❓┊help
RecordCheckboxPosition
How to implement this functionality? Any body used it to choose records from table of records?
2 replies
FFilament
Created by Uma on 8/6/2024 in #❓┊help
Table with action as a custom modal
I am looking for a way to create custom modal window (From Resource form )which has table inside and I want to choose one of the table row and fill the resource from. Is there any way to achieve this in Filament 3. { Tried creating custom live wore component as a modal , but cant get selected rows value back the the form. }
3 replies
FFilament
Created by Uma on 6/18/2024 in #❓┊help
FileUpload bug - Some files a are missing after uploaded.
No description
80 replies
FFilament
Created by Uma on 3/21/2024 in #❓┊help
multiple file upload - missing some files
Hi I am using Filament FileUpload to upload multiple files. I am noticing strange behaviour. Some time some of the files that are uploaded are missing. Has anybody else also facing the same issue? I am saving this into tabel [ "application_files/2024-03-21 14:40:18-document2.pdf", "application_files/2024-03-21 14:40:18-document4.pdf", "application_files/2024-03-21 14:40:18-document3.pdf", "application_files/2024-03-21 14:40:18-document5.pdf" ] . This is what i am having in table. Also in the uolpads/applicaiton files also contains only these 4 files instead of 5.
FileUpload::make('attachments') ->columnSpan(12) ->multiple() ->maxSize(100000) ->disk('uploads') ->visibility('private') ->directory('application_files') ->getUploadedFileNameForStorageUsing(function ($file): string { $fileName = str($file->getClientOriginalName()); $fileName_str = preg_replace('/[^a-zA-Z0-9.]/','',iconv('UTF-8', 'ASCII//TRANSLIT', $fileName)); return (string) str($fileName_str)->prepend(now() . '-'); }) ->downloadable() ->rules([ new MalwareFile] ) ->label(__('application.resource.application_documents')),
1 replies