@extends('admin.layout.app') @section('content')
@forelse ($brands as $key => $brand) @empty @endforelse
# Image Status Action
{{ $key + 1 }} @if($brand->image) {{ $brand->image_alt ?? 'Brand Image' }} @else No image @endif @if ($brand->status == 'Active') Active @else Inactive @endif
@csrf @method('DELETE')
No brands found.
@if(method_exists($brands, 'links'))
{{ $brands->links('pagination::bootstrap-4') }}
@endif
@endsection