Tutorials for routing
-
Course lesson: 02 - Basic Routing and Views: URLs and Default Laravel Homepage
-
Course lesson: 03 - List of Data: Routing, Controllers and Postman Demo
-
Course lesson: 12 - Routing: Navigation Links and Posts Create Page
-
September 07, 2020 · 13:31
Laravel Route Grouping: Simple to Very Complex
-
July 23, 2021 · 6:59
Laravel Route Model Binding: All You Need To Know
-
March 19, 2020 · 5:42
Laravel: 8 Tips for Advanced Routing
-
May 12, 2020 · 8:03
About/Contact Pages: Structuring Routes in Laravel
-
June 11, 2020 · 6:38
Laravel: Separate Admin/User Areas - Designs, Routes, Permissions
-
May 05, 2022 · 4:52
Laravel Nested Controllers and Scope Bindings For Security
-
· Updated Aug 2022 · 6 mins, 1056 words
Tutorial: Multi-Language Routes and Locales with Auth
-
· Updated Aug 2022 · 2 mins, 234 words
Tutorial: How to check current URL or Route
-
Random Quick Laravel Tip:
Dust out your bloated route fileDust out your bloated route file and split it up to keep things organized
class RouteServiceProvider extends ServiceProvider{public function boot(){$this->routes(function () {Route::prefix('api/v1')->middleware('api')->namespace($this->namespace)->group(base_path('routes/api.php'));Route::prefix('webhooks')->namespace($this->namespace)->group(base_path('routes/webhooks.php'));Route::middleware('web')->namespace($this->namespace)->group(base_path('routes/web.php'));if ($this->app->environment('local')) {Route::middleware('web')->namespace($this->namespace)->group(base_path('routes/local.php'));}});}}Tip given by @Philo01
-
Course lesson: 13 - Routing: Layout, Navigation Links and Post Create Page
-
Course lesson: 15 - Introducing Vue Router with Links
-
January 20, 2022 · 2:57
New in Laravel 8.80: Route::controller() with Groups