{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach ($brands as $brand) @endforeach
{{ __('admin.date') }} {{__('admin.name')}} {{__('admin.ban_status')}} {{__('admin.control')}}
{{ $brand->created_at->format('d/m/Y') }} {{ $brand->name }} @if (!$brand->status) {{ __('admin.unavailable') }} {{__('admin.change_available')}} @else {{ __('admin.available') }} {{__('admin.change_unavailable')}} @endif
{{-- table content --}} {{-- no data found div --}} @if ($brands->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($brands->count() > 0 && $brands instanceof \Illuminate\Pagination\AbstractPaginator )
{{$brands->links()}}
@endif {{-- pagination links div --}}