@include('Commonheader', ['page_title' => 'Category List'])
@include('sidebar')
@include('restaurant.navbar')
Category List
Add New Category
#
Category Name
Price Adjustment
Actions
@foreach ($categories as $index => $cat)
{{ $index + 1 }}
{{ $cat->category_name }}
{{ $cat->price_adjustment }}
Edit
Delete
@endforeach
@include('Commonfooter')
@include('Commonscript')