Mike Wazowski
Adding FileUpload::make() make the whole resource or page not accessible
Adding FileUpload::make() make the whole resource or page not accessible, as it makes the whole page loads only or stuck on loading, removing it makes the problem go away but this application was already created, it just happened recently.
5 replies
Can't Login After Clearing Config and Cache, Filament\Panel::getBrandName(): Return value must be of
I'm Having this issue on my Panel Filament\Panel::getBrandName(): Return value must be of type Illuminate\Contracts\Support\Htmlable|string, null returned, But I didn't use any Brand Name on the Custom Brand Logo.
4 replies
Set Panel (Has Authentication) to be accessed by the Public
Hi there, Would it be possible to set the Panel publicly meaning the pages there can be accessed even if the user is not logged in, but the User can still login to access additional features.
I've tried to comment out some middlewares and removed the emailverification() on the panel provider - it worked but I worry there might be some issues there
Is there a good or better way to do it?
2 replies
Tips and Recommendations for a Filament Application on Web Server Setup
Hi, Does Anyone have any Tips and Recommendations for a Course Management Application similar to Coursera that is made with fully with Filament on what to do on the Server Setup. My initial Planned Setup are (The expected is the App will be used with 100 concurrent users):
RAM: 8 GiB
CPU: 4 vCPUs
Transfer Rate: 5,000 GiB
Number of Servers: 1
DB: MySQL Server (On a Separate Server)
I'm thinking of another Server that should be deployed, increasing the # with a load balancer but my concern there is how to make filament inline on the sessions. Thank you so much!
8 replies
Slow API and Filament App after a couple of weeks in the Live Server
Hi there, are there any similar issues or insights to what might be the issue? I have a Filament V3 App that was moved to the Production Site Last November 28, for the first week it was okay the Speed of the App and API is great! But after a couple weeks it was noticebly slow, the Requests are now minimum of almost 1 minute and the page load.
This is similar to a recent Filament v3 App as well that I just put into live just last week, first it was okay but become slow as well.
I've already cleared the cache, and the Server Load such as CPU, Memory is just below 1%.
Thank you so much!
6 replies
Hide Text Form Input based on Selected Data from other Form Components
Hi there I have this codes, and I can't seem to make the expected hidden form behavior. The the other_information text input should show based on the data of the status Radio.
Radio::make('status')
->options([
0 => 'Open',
1 => 'Closed',
2 => 'Done',
])
->default(0)
->required(),
TextInput::make('other_information')
->numeric()
->visible(fn ($get) => $get('./status') < 1),
Does anyone know how to do this? Thanks a bunch.6 replies
Filament File Upload INtegration with Digital Ocean S3
Does anyone know a guide for this? I'm having trouble installing the plugin recommended on the forum.
https://v2.filamentphp.com/tricks/digital-ocean-spaces#:~:text=%22driver%22%20%3D%3E%20%22s3%22%2C%20%22key%22%20%3D%3E%20%22%5BKEY%5D%22%2C%20%22secret%22%20%3D%3E,%22%5BEDGE%20OR%20CDN%20ENDPOINT%5D%22%2C%20%2F%2F%20ex%3A%20https%3A%2F%2F%20%5BNAME%5D.
3 replies