@extends('layouts.back-end.app-seller') @section('title', translate('product_Report')) @push('css_or_js') @endpush @section('content')
{{translate('SL')}} | {{translate('product_Name')}} | {{translate('last_Updated_Stock')}} | {{translate('current_Stock')}} | {{translate('status')}} |
---|---|---|---|---|
{{$products->firstItem()+$key}} | {{ date('d M Y', $data['updated_at'] ? strtotime($data['updated_at']) : null) }} | {{$data['current_stock']}} |
@if($data['current_stock'] >= $stock_limit)
{{translate('In-Stock')}}
@elseif($data['current_stock'] == 0)
{{translate('out_of_Stock')}}
@elseif($data['current_stock'] < $stock_limit)
{{translate('soon_Stock_Out')}}
@endif
|