Hey guys,
i got a Problem uploading my Files. I get the ERROR ERR_ACCESS_DENIED.
Here is my function:
FileUpload::make('excel_file')
->label('Excel-Datei auswählen')
->acceptedFileTypes([
'application/octet-stream',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'application/vnd.ms-excel',
'text/csv',
])
->required()
->live()
->afterStateUpdated(function ($state, $set) {
ray($state)->red();
ray($state->getRealPath())->red();
}),
I'm trying to upload excel files. Also set the write Permission to storage Path. You guys have any clue where i can check?
Also set the php artisan storage:link