@extends('admin.layouts.app') @section('content')
@if($brands->isEmpty()) @else @php $counter = ($brands->currentPage() - 1) * $brands->perPage() + 1; @endphp @foreach($brands as $brand) @php $counter++; @endphp @endforeach @endif
Brand ID Brand Name Created At Control

There are no brands to be shown

{{$counter}} {{$brand->name}} {{$brand->created_at->format('d / m / Y') }}
@csrf @method('DELETE') Edit {{-- Show--}}
{{ $brands->onEachSide(5)->links() }}
@endsection