Julien B. (aka yebor974)
Julien B. (aka yebor974)
FFilament
Created by Ibiza on 11/15/2024 in #❓┊help
Hide Navigation on specific pages
Hey, have you tried extending SimplePage instead of Page ? It seems like your case involves a tenant model too
4 replies
FFilament
Created by arif on 9/9/2024 in #❓┊help
How to Display Related Model Data on the Edit Page?
Hi, your relation is userDetail not detailUser as you wrote with detailUser.name
4 replies
FFilament
Created by Julien B. (aka yebor974) on 8/2/2024 in #❓┊help
Textarea autoSize after save or error
I missed the PR, thanks for the info!
35 replies
FFilament
Created by Mike. on 7/16/2024 in #❓┊help
Send Email
Need more information to help. Do you have the confirmation modal on click ? What is the data array ? You have only these injections on table actions : https://filamentphp.com/docs/3.x/tables/actions#table-action-utility-injection The table is about invoices list ?
10 replies
FFilament
Created by Mike. on 7/16/2024 in #❓┊help
Send Email
Maybe your mail class SendInvoice implements ShouldQueue and you need to start your jobs queue (horizon or other) ?
10 replies
FFilament
Created by leoms1408 on 7/8/2024 in #❓┊help
Form Select relationship search in two columns
4 replies
FFilament
Created by QCTFW on 7/5/2024 in #❓┊help
Can I define an extra searchable column without creating a column in the table?
You can set array param in searchable like :
TextColumn::make('book.name')
->label('Book')
//...
->searchable(['name', 'isbn'])
->sortable()
TextColumn::make('book.name')
->label('Book')
//...
->searchable(['name', 'isbn'])
->sortable()
6 replies
FFilament
Created by Jackson Falcão on 7/4/2024 in #❓┊help
Uploads Larger Than 16MB
What is the error shown in your form view ?
33 replies
FFilament
Created by Jackson Falcão on 7/4/2024 in #❓┊help
Uploads Larger Than 16MB
Just try to increase the php memory_limit attribute before excluding it
33 replies
FFilament
Created by Jackson Falcão on 7/4/2024 in #❓┊help
Uploads Larger Than 16MB
You have two maxSize on your file upload. I think the last is taken but not sure 😅
33 replies
FFilament
Created by Jackson Falcão on 7/4/2024 in #❓┊help
Uploads Larger Than 16MB
In my opinion, it seems it's not an Apache/PHP issue; otherwise, you would get an error in the errors.log file. How is your FileUpload component configured in form ? Have you set a maxSize ? The error appears after how much time (upload) ?
33 replies
FFilament
Created by Adnan Yalahow on 7/4/2024 in #❓┊help
Change side bar background color
You need to create a custom theme like this : https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme This will create a css file in your /resources/css/filament directory (named theme.css for your panel). And next you can add your customized class on it, like :
.fi-sidebar {
@apply !bg-gray-500;

.fi-sidebar-header {
//...
}

//...
}
.fi-sidebar {
@apply !bg-gray-500;

.fi-sidebar-header {
//...
}

//...
}
dont forget run npm or yarn build / dev
7 replies
FFilament
Created by Jackson Falcão on 7/4/2024 in #❓┊help
Uploads Larger Than 16MB
I need to follow the request and see where it's blocked (whether the log is in access.log with a 422 error code or in error.log, ...). It's very strange. I can't debug it without being on the server.
33 replies
FFilament
Created by Adnan Yalahow on 7/4/2024 in #❓┊help
Change side bar background color
You have information about it on https://filamentphp.com/docs/3.x/support/style-customization You can manage a theme and use .fi-sidebar and others to declare css.
7 replies
FFilament
Created by Jackson Falcão on 7/4/2024 in #❓┊help
Uploads Larger Than 16MB
Do you use php-fpm (see if good php.ini is modified) ? Have you configured a proxy (with proxy_pass for example) ? Could you share your apache host config ? No other ideas 😄
33 replies
FFilament
Created by Jackson Falcão on 7/4/2024 in #❓┊help
Uploads Larger Than 16MB
yes post_max_size need to be equal or higher than upload_max_filesize.
33 replies
FFilament
Created by Jackson Falcão on 7/4/2024 in #❓┊help
Uploads Larger Than 16MB
and what is post_max_size php config ?
33 replies
FFilament
Created by Jackson Falcão on 7/4/2024 in #❓┊help
Uploads Larger Than 16MB
it seems to be php config. Have you set upload_max_filesize and post_max_size and reload apache ? Check the apache error log. It seems your are on Ubuntu, log file is on /var/logs/apache/error.log
33 replies