как добавить ресурс маршрута в список навигационной панели в laravel?
введите описание изображения здесь Route::resource('/branch','BranchController');
но,
ErrorException (E_ERROR) Маршрут [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 ответ
Ресурс маршрутизатора будет сгенерирован, например:
(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)