{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach($products as $product) @endforeach
{{ __('admin.name') }} {{ __('admin.product_num') }} {{ __('admin.price') }} {{ __('admin.quantity') }} {{ __('admin.control') }}
{{$product->name}} {{$product->product_num}} {{$product->price}} {{$product->quantity}}
{{-- table content --}} {{-- no data found div --}} @if ($products->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($products->count() > 0 && $products instanceof \Illuminate\Pagination\AbstractPaginator )
{{$products->links()}}
@endif {{-- pagination links div --}}