<!-- View stored in resources/views/greeting.blade.php --> <html> <body> <h1>Hello, {{ $name }}</h1> </body> </html>
Route::get('/', function () { return view('greeting', ['name' => 'James']); });
Return view('admin.profile', $data);
Use Illuminate\Support\Facades\View; if (View::exists('emails.customer')) { // }
Return view()->first(['custom.admin', 'admin'], $data);
Use Illuminate\Support\Facades\View; return View::first(['custom.admin', 'admin'], $data);
Clickable & Draggable!