Animated Sidebar
Filament v3: Adding overflow/scrollbar to forms

How do you set the relationship name, when creating nested records?
EntityAlias
nested in Entity
. I've also got a AliasesRelationManager
. Everything works except the "Create". When I attempt to create a record, not only do I have to manually select the entity it's for (even though I've come from that page), but when trying to save, it's guessing the relationship name.
I need to call ParentResourceRegistration::relationship()
but I cannot for the life me figure out how to....Notification transparency

Pagination Cursor not working in Filament Tables
public function getTablePage(): int
{
return $this->getPage($this->getTablePaginationPageName());
}
public function getTablePage(): int
{
return $this->getPage($this->getTablePaginationPageName());
}
curator error
Override the default action for a CRUD
It is amazing for maintainability and refactoring.
...
Htmlable label causes "Alpine Expression Error: Invalid or unexpected token"

Tenancy Model Scoping Best Practices
admin user - trying to install filament 4 and create admin user
php artisan tinker
```bash...Exporting Image's + CSV/Excel using Exporter
Infolist - belongsToMany collection.count not rendering?
Validation Rules only on create
Best practice for having multiple panels with single authentication
Wizard with multiple (success) buttons
->fill() does not work with SpatieMediaLibraryFileUpload
SpatieMediaLibraryFileUpload
with the data fails. If I provide uuid
, path
, url
it doesn't give any error but also doesn't populate the field. If I were to give UploadedFile
, Media
or MediaCollection
it gives an error with Filament\Forms\Components\SpatieMediaLibraryFileUpload::{closure:Filament\Forms\Components\SpatieMediaLibraryFileUpload::setUp():90}(): Argument #2 ($file) must be of type string, array given
this error originates from closure used in$this->getUploadedFileUsing
when the function setUp
has been called. It's driving me insane.
I have also tried to just use relationship but still the same problem!
...mount()
function
2. Because lazy loading is disabled for Media
model, add ->load('media')
to the model you are fetching
3. Explicitly define ->model($this->yourModel)
in the SpatieMediaLibraryFileUpload
4. Fill the field using the uuid
of the media you're trying to use...
v4 Page number pagination
->paginationMode(PaginationMode::Default)
, but it's still just previous and next buttons. Maybe I'm missing something. 🤔...
RBAC in Multi Tenant system