@extends('layouts.app') @section('content')
@if(session('success')) @endif
count() > 0) id="bookings-table" @endif class="table table-bordered align-middle text-center"> @forelse($brands as $brand) @empty @endforelse
ID Logo Name Slug Status Products Actions
{{ $brand->id }} @if($brand->logo) {{ $brand->name }} @else
@endif
{{ $brand->name }} {{ $brand->slug }} {{ $brand->is_active ? 'Active' : 'Inactive' }} {{ $brand->products->count() }} Products
{{-- View Button --}} @can('view brands') @endcan {{-- Edit Button --}} @can('update brands') @endcan {{-- Delete Button --}} @can('delete brands')
@csrf @method('DELETE')
@endcan
No brands found.
@endsection @push('script') @endpush