F
Filament17mo ago
karmac

Route not defined

I defined a custom route in web.php like the following: Route::get('download-file', function () { // download file }); but when accessing it from infolist custom ViewEntry I got always Route [download-file] not defined
Solution:
You haven’t defined the route name. ->name(‘download-file’)
Jump to solution
1 Reply
Solution
awcodes
awcodes17mo ago
You haven’t defined the route name. ->name(‘download-file’)

Did you find this page helpful?