Creating a Basic Route in Laravel 8
use App\Http\Controllers\PagesController;
// Create route for About Page
Route::get('about-us', [PagesController::class, 'aboutPage'])->name('pages.about');
Creating a Basic Route in Laravel 8
use App\Http\Controllers\PagesController;
// Create route for About Page
Route::get('about-us', [PagesController::class, 'aboutPage'])->name('pages.about');
route() and with() in laravel
Route::get('user/{id}/profile', function ($id) {
//
})->name('profile');
$url = route('profile', ['id' => 1, 'photos' => 'yes']);
// /user/1/profile?photos=yes
laravel get route
Route::get('foo', function () {
return 'Hello World';
});
laravel route
Route::get('user/{id}', function ($id) {
return 'User '.$id;
});
how to create route in laravel
Route::match(['get', 'post'], '/', function () {
//
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us