Код: Выделить всё
Route::get('/user/{user}', function (App\Models\User $user) {
return $user;
});
**
Код: Выделить всё
public function show(User $user)
{
return view('user.profile', compact('user'));
}
Подробнее здесь: https://stackoverflow.com/questions/786 ... laravel-11
Мобильная версия