Member Since 3 Years Ago
3,440 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Replied to Problem With Routing
Strange, it works when I put the line you mentionned after my dashboard line...
Many thanks for pointing this out...
Replied to Problem With Routing
Here are all my other routes:
Route::get('loe/{id}', ['uses' => '[email protected]', 'as' => 'listFromProjectID', 'middleware' => ['permission:projectLoe-view|projectLoe-dashboard_view']]);
Route::get('loeHistory/{id}', ['uses' => '[email protected]', 'as' => 'loeHistory', 'middleware' => ['permission:projectLoe-view']]);
Route::get('loe/init/{id}', ['uses' => '[email protected]', 'as' => 'loeInit', 'middleware' => ['permission:projectLoe-create']]);
Route::get('loe/delete/{id}', ['uses' => '[email protected]', 'as' => 'loeDelete', 'middleware' => ['permission:projectLoe-delete']]);
Route::get('loe/duplicate/{id}', ['uses' => '[email protected]', 'as' => 'loeDuplicate', 'middleware' => ['permission:projectLoe-create']]);
Route::post('loe/create_update/{id}', ['uses' => '[email protected]_update', 'as' => 'loeCreateUpdate', 'middleware' => ['permission:projectLoe-create|projectLoe-edit']]);
Route::get('loe/site_delete/{id}', ['uses' => '[email protected]_delete', 'as' => 'loeSiteDelete', 'middleware' => ['permission:projectLoe-delete']]);
Route::post('loe/site_create/{id}', ['uses' => '[email protected]_create', 'as' => 'loeSiteCreate', 'middleware' => ['permission:projectLoe-create']]);
Route::patch('loe/site_edit/{id}', ['uses' => '[email protected]_edit', 'as' => 'loeSiteEdit', 'middleware' => ['permission:projectLoe-edit']]);
Route::get('loe/cons_delete/{id}', ['uses' => '[email protected]_delete', 'as' => 'loeConsDelete', 'middleware' => ['permission:projectLoe-delete']]);
Route::post('loe/cons_create/{id}', ['uses' => '[email protected]_create', 'as' => 'loeConsCreate', 'middleware' => ['permission:projectLoe-create']]);
Route::patch('loe/cons_edit/{id}', ['uses' => '[email protected]_edit', 'as' => 'loeConsEdit', 'middleware' => ['permission:projectLoe-edit']]);
Route::get('loe/signoff/{id}', ['uses' => '[email protected]', 'as' => 'loeSignoff', 'middleware' => ['permission:projectLoe-signoff']]);
Route::get('loe/masssignoff/{id}', ['uses' => '[email protected]', 'as' => 'loeMassSignoff', 'middleware' => ['permission:projectLoe-signoff']]);
But all the other ones are working fine...
Started a new Conversation Problem With Routing
I have a routing problem in Laravel 7.30.1 and I can't figure out where is the problem.
I have this in my web.php:
Route::get('/loe/dashboard', ['uses' => '[email protected]', 'as' => 'loedashboard', 'middleware' => ['permission:projectLoe-dashboard_view']]);
And when I try to access /loe/dashboard, it returns [] to the screen, it doesn't go to the controler or to the view. I know it doesn't even get to the controller as I did put a dd('test') and it doesn't show up.
But the strange thing is that if I change my route to:
Route::get('/loe_dashboard', ['uses' => '[email protected]', 'as' => 'loedashboard', 'middleware' => ['permission:projectLoe-dashboard_view']]);
And when I try to access /loe_dashboard, then it works fine and prints the whole view without problem.
I have also checked the php artisan route:list and my route is there in both cases...
working:
| | GET|HEAD | loe_dashboard | loedashboard | App\Http\Controllers\[email protected] | App\Http\Middleware\EncryptCookies |
| | | | | | Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse |
| | | | | | Illuminate\Session\Middleware\StartSession |
| | | | | | Illuminate\View\Middleware\ShareErrorsFromSession |
| | | | | | App\Http\Middleware\VerifyCsrfToken |
| | | | | | App\Http\Middleware\Authenticate |
| | | | | | Illuminate\Routing\Middleware\SubstituteBindings |
| | | | | | App\Http\Middleware\General |
| | | | | | App\Http\Middleware\LastOnlineAt |
| | | | | | Spatie\Permission\Middlewares\PermissionMiddleware:projectLoe-dashboard_view |
not working:
| | GET|HEAD | loe/dashboard | loedashboard | App\Http\Controllers\[email protected] | App\Http\Middleware\EncryptCookies |
| | | | | | Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse |
| | | | | | Illuminate\Session\Middleware\StartSession |
| | | | | | Illuminate\View\Middleware\ShareErrorsFromSession |
| | | | | | App\Http\Middleware\VerifyCsrfToken |
| | | | | | App\Http\Middleware\Authenticate |
| | | | | | Illuminate\Routing\Middleware\SubstituteBindings |
| | | | | | App\Http\Middleware\General |
| | | | | | App\Http\Middleware\LastOnlineAt |
| | | | | | Spatie\Permission\Middlewares\PermissionMiddleware:projectLoe-dashboard_view |