@extends('layouts.back-end.app') @section('title','Product List') @push('css_or_js') @endpush @section('content')
{{trans('messages.product_table')}}
@forelse($pro as $k=>$p) @empty

Product Not Found

@endforelse
{{trans('messages.SL#')}} {{trans('messages.Product Name')}} {{trans('stock qty')}} {{trans('messages.selling_price')}} {{trans('messages.featured')}} {{trans('messages.status')}} {{trans('messages.Action')}}
{{$k+1}} {{substr($p['name'],0,20)}}{{strlen($p['name'])>20?'...':''}} {{ $p['current_stock']}} {{ \App\CPU\BackEndHelper::usd_to_currency($p['unit_price']).\App\CPU\BackEndHelper::currency_symbol()}}
@endsection @push('script') @endpush