Используя Laravel 5.5, установлен рюкзак и генераторы Jefferey Way.Следуя инструкциям на сайте, но когда я загружаю страницу на страницах администратора, я получаю ошибку Failed to Load Resource.Crud называется Presenter.
Следуя инструкциям:
# STEP 1. create migration
php artisan make:migration:schema create_tags_table --model=0 --schema="name:string:unique"
php artisan migrate
# STEP 2. create a model, a request and a controller for the admin panel
php artisan backpack:crud tag #use singular, not plural
# STEP 3. add a route to routes/backpack/custom.php (under the admin prefix and auth middleware):
php artisan backpack:base:add-custom-route "CRUD::resource('tag', 'TagCrudController');"
# STEP 4. add a sidebar item
php artisan backpack:base:add-sidebar-content "<li><a href='{{ backpack_url('tag') }}'><i class='fa fa-tag'></i> <span>Tags</span></a></li>"
То, что я вижу в браузере:
VM189:1 POST http://localhost/FroliconServer/public/admin/presenter/search? 404 (Not Found)
(anonymous) @ VM189:1
send @ jquery.min.js:2
ajax @ jquery.min.js:2
sa @ jquery.dataTables.min.js:36
kb @ jquery.dataTables.min.js:37
N @ jquery.dataTables.min.js:29
S @ jquery.dataTables.min.js:31
ga @ jquery.dataTables.min.js:48
e @ jquery.dataTables.min.js:92
(anonymous) @ jquery.dataTables.min.js:92
each @ jquery.min.js:2
each @ jquery.min.js:2
m @ jquery.dataTables.min.js:82
h.fn.DataTable @ jquery.dataTables.min.js:164
(anonymous) @ Presenter:403
l @ jquery.min.js:2
c @ jquery.min.js:2
setTimeout (async)
(anonymous) @ jquery.min.js:2
u @ jquery.min.js:2
fireWith @ jquery.min.js:2
fire @ jquery.min.js:2
u @ jquery.min.js:2
fireWith @ jquery.min.js:2
ready @ jquery.min.js:2
_ @ jquery.min.js:2
Попытка добавить / отредактировать Crud изна странице также выдается ошибка 404, страница не найдена.
Есть какие-либо подсказки относительно того, что я сделал неправильно?