For more information visit Laravel resources reference.
Questions tagged [laravel-resource]
107 questions
-1
votes
2 answers
Laravel 5.6. Route model bindung
Hello I'm trying to create own laravel package it has two Controller resource, which have single controller and model Post
Route::resource('posts', \vendor\package\Controllers\PostsController::class);
Route::resource('categories',…

Andrii
- 324
- 3
- 16
-2
votes
1 answer
in laravel , what is the differace between Route::resource and Route::get?
in laravel 9 , what is the difference between
Route::resource('/blog',[PostController::class);
and
Route::get('/blog',[PostController::class,'index']);
?

Lab Devices
- 43
- 1
- 6