A demonstration of creating a simple blog with posts, categories, tags, and author management in the admin panel, including the ZenBlog front-end theme.
The main logic here is split into two parts - one for Filament and another for a custom user-facing design:
excerpt
field and an actionHere's what that looks like in our code:
app/Filament/Resources/Users/Schemas/UserForm.php
public static function form(Form $form): Form{ public static function configure(Schema $schema): Schema { return $schema ->components([ TextInput::make('name') ->required() ->maxLength(255), TextInput::make('email') ->email() ->required() ->maxLength(255), DateTimePicker::make('email_verified_at'), TextInput::make('password') ->password() ->required() ->maxLength(255), // Instead of normal FileUpload, we use SpatieMediaLibraryFileUpload component SpatieMediaLibraryFileUpload::make('featured_image') // We want to validate the field in real-time, so we use the `live()` method ->live() // Tells the field that it has to be an image ->image() ->hiddenLabel() // We tell which collection we want to use ->collection('avatar') // Enabling the image editor ->imageEditor() // Defining the image rules ->rules(Rule::dimensions()->maxWidth(600)->maxHeight(800)) // After the image is uploaded, we want to validate it ->afterStateUpdated(function (Livewire $livewire, SpatieMediaLibraryFileUpload $component) { $livewire->validateOnly($component->getStatePath()); }), ]); }}