How to change multiple file upload grid column
If I use
->panelLayout('grid')
inside Fileupload::make()
then my file upload are split into 3 columns, how can I change the columns for example 5 columns
Solution:Jump to solution
You would have to do this with a css override. See https://github.com/filamentphp/filament/blob/3.x/packages/forms/resources/css/components/file-upload.css
GitHub
filament/packages/forms/resources/css/components/file-upload.css at...
A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS. - filamentphp/filament
2 Replies
Solution
You would have to do this with a css override. See https://github.com/filamentphp/filament/blob/3.x/packages/forms/resources/css/components/file-upload.css
GitHub
filament/packages/forms/resources/css/components/file-upload.css at...
A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS. - filamentphp/filament
OK, thanks.. will check tomorrow