3. URL của route được đặt tên (URL for named route)
https://viblo.asia/p/tap-18-url-laravel-gDVK2pyjlLj
Route::get('/home', function() {
//
})->name('home');echo route('home'); // http://localhost:8000/homeRoute::get('posts/{post}', function() {
//
})->name('post');echo route('post', ['post' => 1]); // http://localhost:8000/posts/1echo route('post', ['post' => $post]);<form action="{{ route('post', ['post' => $post])" method="POST">
//
</form>Last updated