Tập 10: IV. Đặt tên route (Set name for route) (ok)
https://viblo.asia/p/tap-10-routing-laravel-Qpmlew4oKrd
IV. Đặt tên route (Set name for route)
Route::get('home', function () {
//
})->name('home');$url = route('home');return redirect()->route('home');Route::get('profile/{id}', function ($id) {
//
})->name('profile');
$url = route('profile', ['id' => 1]); // /profile/1PreviousTập 10: Mã hóa '/' (Encoded forward Slashes) cho tìm kiếm (ok)NextTập 10: V. Nhóm route (Route group) (ok)
Last updated