HosseinHasanpouri's avatar

Validate File Before Uploaded as Temporary in Livewire

Hello everyone today i try to make validation for my file input but livewire in file validation first upload file to temporary file and then validate that is there a way to validate file before uploaded as temporary ??

0 likes
2 replies
prospero's avatar
prospero
Best Answer
Level 3

The updated($property) method would help you on this like a real time validation, or

public function updated($property)
{
   $this->validateOnly($property, [
      'file' => ['required','image']
   ]);
}

Please or to participate in this conversation.