@extends('layouts.admin.app') @section('title',\App\Utils\translate('supplier_list')) @push('css_or_js') @endpush @section('content')

{{\App\Utils\translate('supplier_list')}} {{$suppliers->total()}}

@foreach($suppliers as $key=>$supplier) @endforeach
{{\App\Utils\translate('#')}} {{\App\Utils\translate('name')}} {{\App\Utils\translate('email')}} {{ \App\Utils\translate('phone') }} {{ \App\Utils\translate('products') }} {{\App\Utils\translate('action')}}
{{ $suppliers->firstItem()+$key }} {{ $supplier->name }} {{ $supplier['email'] }} {{$supplier->mobile}} {{ $supplier->products->count() }}
@csrf @method('delete')
{!! $suppliers->links() !!}
@if(count($suppliers)==0)
{{\App\Utils\translate('Image Description')}}

{{ \App\Utils\translate('No_data_to_show')}}

@endif
@endsection