Please help! Create an upload file in the livewire component
Hello, I added a form to my livewire component. on my livewire I am creating an input item using a wizard tab. during part. I want to save the image input in the session first. before finally on the final tab I store directly to the database.
then I have a problem like this when I go back the preview doesn't show the image preview. I use S3 for storage. FILAMENT_FILESYSTEM_DISK=s3
public function mount(): void
{
$this->form->fill(session()->get('input_item.photos'));
}
0 Replies