@extends('layouts.master') @section('css') @endsection @section('title') Purchase Return @endsection @section('content')

PURCHASE RETURN DETAILS

Go Back
VOUCHER TYPE

{{ $accountingVoucher->voucherType->name }}

VOUCHER NUMBER

{{ $accountingVoucher->voucher_number }}

VOUCHER DATE

{{ \Carbon\Carbon::parse($accountingVoucher->voucher_date)->format('d M Y') }}

PARTY (Dr)

{{ $accountingVoucher->debitLedger->name }}

TAX TYPE
@if ($igst)

Interstate(IGST)

@else

Intrastate

@endif
STOCK LOCATION

{{ $accountingVoucher->stockLocation->name ?? '--' }}

REMARKS

{{ $accountingVoucher->remarks ?? '--' }}

LEDGERS

@foreach ($capitalGoods as $item) @endforeach
Ledger Qty Price Gross Value Dis % Taxable Value CGST SGST IGST CESS Total
{{ $item->ledger->name }} {{ $item->quantity }} {{ $item->price }} {{ $item->gross_value }} {{ $item->disc_percentage }} {{ $item->taxable_value }} {{ $item->cgst }} {{ $item->sgst }} {{ $item->igst }} {{ $item->cess }} {{ $item->total }}
@endsection @section('script') @endsection