file upload mutate on upload
When I mutate the data, i only get the generated filename, but i need the original uploaded file name for display purposes, is there a way to do this?
Solution:Jump to solution
```
->afterStateUpdated(function (TemporaryUploadedFile $state, callable $set) {
if ($state) {
$name = $state->getClientOriginalName();
$ext = $state->getExtension();...
1 Reply
Solution