@extends('backend.layouts.master') @section('section-title', 'Category') @section('page-title', 'Category List') @if (check_permission('category.store')) @section('action-button') Add Category @endsection @endif @section('content')
@forelse($categories as $data) @php $count_cat = App\Models\Product::where('category_id', $data->id)->count(); @endphp {{-- edit modal --}} @csrf @method('PUT') {{-- delete modal --}} @csrf @method('DELETE') @empty @endforelse
# Name Actions
{{ $loop->index + 1 }} {{ $data->name }}
No Data Available
{{-- Add Modal --}}
@csrf
@endsection