@extends('admin.layouts.dashboard') @section('title', 'All Brands') @section('content')

Brands

@if($brands->count() > 0) @foreach($brands as $key => $brand) @endforeach @else

No brand Found

@endif
SNo Image Name Status Action
{{ $brands->firstItem() + $key }} your image {{ $brand->name }} @if($brand->is_active) @php $statusBtn = '' @endphp Active @else @php $statusBtn = '' @endphp Deactive @endif {!! $statusBtn !!} {{-- --}}
{!! $brands->links() !!}
@endsection