| {{ __('Sl') }} | {{ __('Product') }} | {{ __('Qty') }} | {{ __('Price') }} | {{ __('Amount') }} |
|---|---|---|---|---|
| {{ $loop->iteration }} | {{\App\Models\Inventoryproduct::where('id',$entry->name)->value('name') }} | {{ $entry->qty ??''}} | {{ $entry->price ??''}} | {{ $entry->qty * $entry->price }} |
| {{ __('Subtotal') }} : | {{ $total }} | |||
| {{ __('In word') }} : {{ \App\Lib\Speller::spell($total) }} {{ __('Taka Only') }} | ||||