@extends('layouts.master') @section('css') @endsection @section('title') Purchase Return @endsection @section('content')
{{ $accountingVoucher->voucherType->name }}
{{ $accountingVoucher->voucher_number }}
{{ \Carbon\Carbon::parse($accountingVoucher->voucher_date)->format('d M Y') }}
{{ $accountingVoucher->creditLedger->name }}
{{ $accountingVoucher->debitLedger->name }}
Interstate(IGST)
@elseIntrastate
@endif{{ $accountingVoucher->stockLocation->name ?? '--' }}
{{ $accountingVoucher->remarks ?? '--' }}
| Item | MRP | Qty | Unit | Price | Gross Value | Dis % | Taxable Value | CGST | SGST | IGST | CESS | Total |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->stockItem->name }}@if ($item->variant_id != null)
({{ $item->variant->name ?? '' }}) @endif |
{{ $item->stockItem->mrp }} | {{ $item->quantity }} | {{ $item->unit->symbol }} | {{ $item->price }} | {{ $item->gross_value }} | {{ $item->disc_percentage }} | {{ $item->taxable_value }} | {{ $item->cgst }} | {{ $item->sgst }} | {{ $item->igst }} | {{ $item->cess }} | {{ $item->total }} |
| Account Name | Amount |
|---|---|
| {{ $accountingVoucherDetail->ledger->name }} | {{ $accountingVoucherDetail->amount }} {{ $accountingVoucherDetail->dr_or_cr }} |