@extends('layouts.vendor.app') @section('title',translate('messages.brand list')) @section('content')
{{translate('messages.brand_list')}}{{$brands->total()}}
@if(request()->get('search')) @endif
@foreach($brands as $key=>$brand) @endforeach
{{ translate('sl') }} {{ translate('messages.brand_id') }} {{ translate('messages.brand_image') }} {{ translate('messages.brand_name') }}
{{ $key+$brands->firstItem() }} {{ $brand->id }} {{translate('brand image')}} {{ Str::limit($brand['name'], 20,'...') }}
@if(count($brands) !== 0)
@endif
{!! $brands->appends($_GET)->links() !!}
@if(count($brands) === 0)
public
{{translate('no_data_found')}}
@endif
@endsection