// resources/views/admin.profile.blade.php
return view('admin.profile');
Views
Blade views are returned using the view()
helper
Route::get('/', function () {
return view('welcome', ['name' => 'Samantha']);
});
See: Views
Comments
Blade views are returned using the view()
helper
Route::get('/', function () {
return view('welcome', ['name' => 'Samantha']);
});
See: Views