@extends('layouts.app') @section('content') {{-- Page Header --}} {{-- Brands Table --}}

{{ __('Brands ') }} ({{ __('Latest ') }})

@forelse($brands as $brand) @empty @endforelse
# {{ __('Name') }} {{ __('Thumbnail') }} {{ __('Status') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ $brand->name }} @if ($brand->thumbnailPath) {{ $brand->name }} @else {{ __('No Image') }} {{ __('No Image') }} @endif {{ $brand->is_active ? 'Active' : 'Inactive' }}
{{-- Edit --}} {{-- Delete --}}
{{ __('No brands found') }}{{ request('search') ? ' ' . __('for') . ' "' . request('search') . '"' : '' }}.
{{-- Pagination --}}
{{ $brands->links() }}
@endsection