@extends('backEnd.master') @section('styles') @endsection @section('mainContent') {{ __('product.brand_list') }} @if (permissionCheck('product.brand.create')) {{__('product.add_new_brand')}} @if (permissionCheck('product.bulk_brand_upload_page')) {{ __('product.bulk_brand_upload') }} @endif @if (permissionCheck('product.csv_brand_download')) {{ __('product.brand_csv') }} @endif @endif {{-- {{ __('common.id') }} --}} {{ __('common.name') }} {{ __('common.logo') }} {{ __('common.status') }} {{ __('common.featured') }} {{ __('common.action') }} @foreach($brands as $key => $brand) {{-- @dd($brand) --}} {{-- --}} {{ $brand->name }} @if ($brand->logo != null) @else @endif status == 1) checked @endif @if (permissionCheck('product.brand.update_active_status')) value="{{ $brand->id }}" data-id="{{$brand->id}}" class="status_change" @else disabled @endif> featured == 1) checked @endif @if (permissionCheck('product.brand.update_active_feature')) value="{{ $brand->id }}" data-id="{{$brand->id}}" class="featured_change" @else disabled @endif> {{ __('common.select') }} {{ __('product.Copy ID') }} @if (permissionCheck('product.brand.edit')) {{__('common.edit')}} @endif @if (permissionCheck('product.brand.destroy')) {{__('common.delete')}} @endif @endforeach {{__('common.load_more')}} @include('backEnd.partials.delete_modal',['item_name' => __('product.brand')]) @endsection @push('scripts') @endpush