Я пытаюсь пройти руководство по маршрутам.
В моем файле web.php есть это
Код: Выделить всё
Route::get('/test/{post}', function($post) {
$posts = [
'my-first-post' => 'Hello, this is my first blog post!',
'my-second-post' => 'Now I am getting the hang of this blogging thing',
'test' => 'test'
];
if (! array_key_exists($post, $posts)) {
abort(404, 'Sorry, that post was not found');
}
return view('post', [
'post' => $posts[$post]
]);
});
Код: Выделить всё
This is a test
this is a test
{{$post}}
Я получаю следующую ошибку< /p>
InvalidArgumentException
Просмотр [сообщение] не найдено.
Я делаю что-то глупое?
Подробнее здесь: https://stackoverflow.com/questions/627 ... avel-route
Мобильная версия