@extends('admin.layouts.master') @section('brand', 'active') @section('title') {{ 'Brand' }} @endsection @section('content')

{{ 'Brand' }}

{{ __('Brand List') }}

@if (Auth::user()->can('admin.brand.create'))   {{ __('Add Brand') }} @endif
Reset
@forelse ($brands as $brand) @empty @endforelse
# {{ __('Name') }} {{ __('Category') }} {{ __('Sub Category') }} {{ __('Models') }} {{ __('Status') }} {{ __('actions') }}
# {{ __('Name') }} {{ __('Category') }} {{ __('Sub Category') }} {{ __('Models') }} {{ __('Status') }} {{ __('actions') }}
{{ $loop->iteration }} {{ $brand->name }} {{ $brand->category->name ?? '' }} {{ $brand->subcategory->name ?? '' }} {{ $brand->brandModel->count() }} @if ($brand->status == '1') Published @else Unpublished @endif {{-- @if (Auth::user()->can('admin.brand.edit')) @endif @if (Auth::user()->can('admin.brand.destroy')) @endif --}} {{--
--}}
{{-- --}}
{{-- --}}
@endsection