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:
``` ->afterStateUpdated(function (TemporaryUploadedFile $state, callable $set) { if ($state) { $name = $state->getClientOriginalName(); $ext = $state->getExtension();...
Jump to solution
1 Reply
Solution
delboy1978uk
delboy1978uk4w ago
->afterStateUpdated(function (TemporaryUploadedFile $state, callable $set) {
if ($state) {
$name = $state->getClientOriginalName();
$ext = $state->getExtension();
$set('filename_uploaded', $name . '.' . $ext);
}
})
->afterStateUpdated(function (TemporaryUploadedFile $state, callable $set) {
if ($state) {
$name = $state->getClientOriginalName();
$ext = $state->getExtension();
$set('filename_uploaded', $name . '.' . $ext);
}
})

Did you find this page helpful?