Get the upload file name

What seems to be the problem: get the original file name

Steps to Reproduce:
when I dd($this->file) I see the hash id but I don’t see any original name.

Are you using the latest version of Livewire:
1.2 version

Do you have any screenshots or code examples:

From Laravel docs:
If you would like to get original name of the uploaded file, you may do so using the getClientOriginalName method

So you can do
$this->file->getClientOriginalName()

1 Like