© 2026 Hedgehog Software, LLC
php artisan make:filament-page
public ?string $quote_1_image; public function mount(): void { $this->homePage = \App\Models\Pages\HomePage::find(1); $this->form->fill($this->homePage->toArray()); } public function form(Form $form): Form { return $form->schema([ Forms\Components\FileUpload::make('quote_1_image') ->image(), ...
Cannot assign array to property App\Filament\Pages\HomePage::$quote_1_image of type ?string
Cannot assign string to property App\Filament\Pages\HomePage::$quote_1_image of type ?array