@extends('layouts.admin.app') @section('title',translate('messages.Add new brand')) @push('css_or_js') @endpush @section('content')
@csrf @if($language) @endif
@if ($language)
@foreach($language as $key=> $lang)
@endforeach @else
@endif
{{translate('messages.brand_list')}}{{$brands->total()}}
@if(request()->get('search')) @endif
@foreach($brands as $key=>$brand) @endforeach
{{translate('sl')}} {{translate('messages.id')}} {{translate('messages.name')}} {{translate('messages.status')}} {{translate('messages.action')}}
{{$key+$brands->firstItem()}} {{$brand->id}} {{Str::limit($brand['name'], 20,'...')}}
@csrf @method('delete')
@if(count($brands) !== 0)
@endif
{!! $brands->appends($_GET)->links() !!}
@if(count($brands) === 0)
public
{{translate('no_data_found')}}
@endif
@endsection @push('script_2') @endpush