@extends('backend.layouts.app') @section('content')

{{translate('All Brands')}}

{{ translate('Brands') }}
@foreach($brands as $key => $brand) @endforeach
# {{translate('Name')}} {{translate('Logo')}} {{translate('Options')}}
{{ ($key+1) + ($brands->currentPage() - 1)*$brands->perPage() }} {{ $brand->getTranslation('name') }} {{translate('Brand')}}
{{ $brands->appends(request()->input())->links() }}
{{ translate('Add New Brand') }}
@csrf
{{ translate('Browse')}}
{{ translate('Choose File') }}
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection