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