btx
Remove FileUpload delay/debounce
I am using the
Forms\Components\FileUpload
component in a form.
Hovever, even when the file is 1kb, the upload process takes about 2 seconds. In this time, the browser shows no outgoing request. When this happens, the upload itself takes 28ms. Why is the UI waiting so long to perform the request?
->debounce(0)
helped to reduce it by 1 seconds, but it seems this wasn't it all.
I want a fast and snappy as possible expericence.22 replies
How to theme using SCSS?
I followed this guide to create a custom theme. https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme
How ever it does not work with scss. How can I enable ?
3 replies
New Custom Page 404
Hi,
I created a new custom page (the first one) in my project using
php artisan make:filament-page QueueDashboard
.
However the page is not reachable, and not showing up in the sidebar. Using route:list
shows the route
But when I call /admin/queue-dashboard, I get 404. Whats wrong ?? 😓
The Class has the following content:
70 replies
Dehydration Status
Hey guys,
I have a FileUpload form field in an Action, that uses the
dehydrateStateUsing
to process the uploaded file. The processing has a foreach
loop. Is it possible to show a progress in the upload form using the $index
of the loop?2 replies
Add CSS class to <html>
I implemented different themes using the
tw-colors
tailwind package. Now I have to render the configured class name from .env into the <html> tag, e.g. <html class="classic-theme">
.
But I could not find any way to achieve this so far. I created resources/views/layouts/app.blade.php
but this file seems to be ignored for the admin panel.
Edit: Or alternatively I can add
7 replies