@lang('View Brands')
@can('delete', App\Brand::class) {{csrf_field()}}
@endcan
@lang('Advanced Search')
@can('delete', App\Brand::class) @endcan @if((Auth::user()->can('update', App\Brand::class)) || (Auth::user()->can('delete', App\Brand::class))) @endif @if($brands) @foreach($brands as $brand) @can('delete', App\Brand::class) @endcan @if((Auth::user()->can('update', App\Brand::class)) || (Auth::user()->can('delete', App\Brand::class))) @endif @endforeach @endif
@lang('ID') @lang('Photo') @lang('Name') @lang('Status') @lang('Created')@lang('Action')
{{$brand->id}} @if($brand->photo) @lang('Brand') @else - @endif {{$brand->name}} {{$brand->is_active ? __('Active') : __('Inactive')}} {{$brand->created_at}} @can('update', App\Brand::class) @endcan   @can('delete', App\Brand::class) @endcan