// Replace with column name
protected $fillable = [
'subject',
'description',
'attachments',
'originalAttachments',
// ...
];
// This should have if you put multiple attachments
protected $casts = [
'attachments' => 'array',
'originalAttachments' => 'array',
];
Run the database migration
php artisan migrate --force
Create a filament resource menu
php artisan make:filament-resource <ResourceName>
Create a form for the resource by edit Resources file (app/Filament/Resource)
To redirect back to table after user submit form, paste this code inside class (app\Filament\Resources\NameResource\Pages\CreateResource.php and EditResource.php)
protected function getRedirectUrl(): string
{
return $this->getResource()::getUrl('index');
}
To create table resource, Edit Resources file (app/Filament/Resources)