@extends('layouts.back-end.app') @section('title', \App\CPU\translate('Product List')) @push('css_or_js') @endpush @section('content')

{{\App\CPU\translate('Limited_Stocked_Products_List')}} {{ $pro->total() }}

{{ \App\CPU\translate('the_products_are_shown_in_this_list,_which_quantity_is_below') }} {{ $stock_limit }}

@foreach($pro as $k=>$p) @if($p->request_status != 2 ) @endif @endforeach
{{\App\CPU\translate('SL')}} {{\App\CPU\translate('Product_Name')}} {{\App\CPU\translate('purchase_price')}} {{\App\CPU\translate('selling_price')}} {{\App\CPU\translate('quantity')}} {{\App\CPU\translate('Active')}} {{\App\CPU\translate('status')}} {{\App\CPU\translate('action')}}
{{$pro->firstItem()+$k}} {{\Illuminate\Support\Str::limit($p['name'],20)}} {{\App\CPU\BackEndHelper::set_symbol(\App\CPU\BackEndHelper::usd_to_currency($p['purchase_price']))}} {{\App\CPU\BackEndHelper::set_symbol(\App\CPU\BackEndHelper::usd_to_currency($p['unit_price']))}}
{{$p['current_stock']}}
@csrf @method('delete')
{{$pro->links()}}
@if(count($pro)==0)
Image Description

{{\App\CPU\translate('No data to show')}}

@endif
@endsection @push('script') @endpush