| Sl | Item Name | Quantity | Unit Price | Total |
|---|---|---|---|---|
| {{ ++$key }} | {{ $value->item_name }} | {{ $value->quantity }} | {{ number_format($value->rate,2) }} | {{ number_format( ($value->rate * $value->quantity),2)}} |
@extends('layouts.template')
@section('template')
SALES RETURN DETAILS
@foreach($purchaseReturnDetails as $key => $value)
Sl
Item Name
Quantity
Unit Price
Total
@endforeach
{{ ++$key }}
{{ $value->item_name }}
{{ $value->quantity }}
{{ number_format($value->rate,2) }}
{{ number_format( ($value->rate * $value->quantity),2)}}