@extends('layouts.app')
@section('content')
{{-- Page Header --}}
| # | {{ __('Name') }} | {{ __('Thumbnail') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $brand->name }} |
@if ($brand->thumbnailPath)
{{ __('No Image') }}
@endif
|
{{ $brand->is_active ? 'Active' : 'Inactive' }} |
|
| {{ __('No brands found') }}{{ request('search') ? ' ' . __('for') . ' "' . request('search') . '"' : '' }}. | ||||