how to add the route resource in navbar list in laravel?

124 Views Asked by At

enter image description hereRoute::resource('/branch','BranchController');

but,

ErrorException (E_ERROR) Route [branch.viewbranch] not defined. (View: /home/praveenkumar/Desktop/makeshbakery/resources/views/layout/sidebar.blade.php) (View: /home/praveenkumar/Desktop/makeshbakery/resources/views/layout/sidebar.blade.php) (View: /home/praveenkumar/Desktop/makeshbakery/resources/views/layout/sidebar.blade.php)[lara][1]

1

There are 1 best solutions below

0
V.Nhat On

Router resource will generate to example:

(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)