Sujay Barma
Sujay Barma
FFilament
Created by Sujay Barma on 11/14/2024 in #❓┊help
How to increase Max file upload size?
I am trying set file upload size limit to 800M.
FileUpload::make('download_url')
->disk('public')
->directory('videos')
->label('Video File')
->maxSize(819200) // 800 MB in KB
->preserveFilenames();
FileUpload::make('download_url')
->disk('public')
->directory('videos')
->label('Video File')
->maxSize(819200) // 800 MB in KB
->preserveFilenames();
But I am unable to upload a 750M file. I am getting following error. The mountedTableActionsData.0.download_url.d1b511bb-4c36-4261-8ea3-9389841af147 field must not be greater than 200000 kilobytes. Please suggest.
37 replies
FFilament
Created by Sujay Barma on 9/24/2024 in #❓┊help
Add condition if column value blank in table
No description
6 replies
FFilament
Created by Sujay Barma on 9/22/2024 in #❓┊help
The Popup form closes
No description
5 replies
FFilament
Created by Sujay Barma on 8/31/2024 in #❓┊help
Show multiple column data in a single table column.
I am trying to show 3 columns data in single Table column. But it show only blank.
Tables\Columns\TextColumn::make('properties')->label('Properties')
->formatStateUsing(function($record){
return "Length: {$record->length} \n Frames: {$record->frames} \n Size: {$record->size}M";
})->wrap(),
Tables\Columns\TextColumn::make('properties')->label('Properties')
->formatStateUsing(function($record){
return "Length: {$record->length} \n Frames: {$record->frames} \n Size: {$record->size}M";
})->wrap(),
Please suggest.
7 replies
FFilament
Created by Sujay Barma on 8/28/2024 in #❓┊help
Using Step Form with Livewire
No description
3 replies
FFilament
Created by Sujay Barma on 8/26/2024 in #❓┊help
How to trigger a click event on 'next' button click in Wizard Step form.
No description
6 replies
FFilament
Created by Sujay Barma on 8/24/2024 in #❓┊help
Rendering Livewire Table Using Wizard Step in Resource
No description
2 replies
FFilament
Created by Sujay Barma on 8/22/2024 in #❓┊help
Can we have 2 level Relation Manager
No description
7 replies
FFilament
Created by Sujay Barma on 8/18/2024 in #❓┊help
Popup Model With Multi-Step Form
No description
5 replies
FFilament
Created by Sujay Barma on 8/13/2024 in #❓┊help
How to get file size after file upload?
No description
9 replies