Создать вид с маршрута Laravel

Route::get('/', function () {
    return view('greeting', ['name' => 'James']);
});
Elated Earthworm