как добавить ресурс маршрута в список navbar в laravel? - PullRequest
0 голосов
/ 19 марта 2020

введите описание изображения здесь Route :: resource ('/ branch', 'BranchController');

но,

ErrorException (E_ERROR) Route [branch. viewbranch] не определено. (Просмотр: /home/praveenkumar/Desktop/makeshbakery/resources/views/layout/sidebar.blade.php) (Просмотр: /home/praveenkumar/Desktop/makeshbakery/resources/views/layout/sidebar.blade.php) (Просмотр: /home/praveenkumar/Desktop/makeshbakery/resources/views/layout/sidebar.blade.php)[lara][1]

1 Ответ

0 голосов
/ 19 марта 2020

Ресурс маршрутизатора сгенерирует к примеру:

(get) index => route('branch.index')
(get) show => route('branch.show', $id)
(get) create => route('branch.create')
(post) store => route('branch.store')
(get) edit => route('branch.edit', $id)
(put/patch) update => route('branch.update')
(delete) destroy => route('branch.delete', $id)
...