@extends('layouts.admin') @section('title', 'Brands') @section('page_title', 'Brands') @section('page_css') @endsection @section('content') {{-- Brands index: search + table + pagination --}}
@if(request('search'))Clear@endif
@forelse($brands as $brand) {{ $brands->firstItem() + $loop->index }} {{ $brand->name }} {{ $brand->name }} {{ $brand->destination->name ?? '—' }} @empty No brands found. @endforelse
Showing {{ $brands->firstItem() }}{{ $brands->lastItem() }} of {{ $brands->total() }} brands {{ $brands->appends(request()->query())->links('vendor.pagination.bootstrap-5') }}
@endsection @section('page_js') @endsection