
Good content takes time and effort to come up with.
Please consider supporting us by just disabling your AD BLOCKER and reloading this page again.
I was working on the project and had almost completed it, by then all the sudden my manager told to change the URL prefixes of a few modules of the project. I was searching for routes and replacing them manually. It was a pain in the ass to go and change in all the places.
Then I came across Laravel Named Routes and how it saved me and will save me in future from this kind of situation too.
Named routes allow you to generate URLs without being coupled to the actual URL defined on the route.
Route::get('/auth/login', [AuthController::class, 'login']);
Route::get('/auth/login', [AuthController::class, 'login'])->name('login');
Instead of
{{ url('/auth/login') }}
{{ route('/auth/login') }}
Route::post('/payments/payment-success/{event}', [PaymentController::class, 'store']);
Route::post('/payments/payment-success/{event}', [PaymentController::class, 'store'])->name('payment-success');
{{ url('payments/payment-success/' . $event->id) }}
{{ route('payments/payment-success', ['event' => $event->id]) }}
Route::get('/post/{post}/comment/{comment}', [PostController::class, 'show'])->name('comment.show');
{{ route('comment.show', ['post' => 1, 'comment' => 3]) }}
// http://example.com/post/1/comment/3
route('post.show', ['post' => 1, 'search' => 'rocket']);
// http://example.com/post/1?search=rocket
Create Custom 404 Page In Laravel
PHP extension ext-intl * is missing
What Is Laravel Resourceful Controllers?
Make Laravel Controllers Slim By Skimming Form Validation Request
Localization In Laravel REST API
Debugging Laravel Queue Email Issues
What Is Method Chaining In PHP?
Install Linux, Apache, MYSQL, PHP (LAMP Stack) on Ubuntu
Factories To Speed Up Test-Driven Development In Laravel
SummerNote WYSIWYG Text Editor Save Images To Public Path In PHP Laravel
Firebase Cloud Messaging (FCM) Browser Web Push Notifications Using Javascript And PHP
Why You Should Run Cronjobs In Laravel?
Install Packages Parallel For Faster Development In Composer