@extends('layouts.master')
@section('css')
@endsection
@section('title')
Cost Allocation of Purchase Voucher No : {{ $acVoucher->voucher_number }}
@endsection
@section('content')
| Particular |
Amount |
Journal No: |
| Purchase Amount |
{{ $acVoucher->amount }} (Taxable Amount :{{ $acVoucher->items()->sum('taxable_value') }}) (Tax : {{ $acVoucher->items()->sum('igst') + $acVoucher->items()->sum('cgst') + $acVoucher->items()->sum('sgst') + $acVoucher->items()->sum('cess') }}) |
@foreach ($expense as $expense)
| {{ $expense->ledger->name }} |
{{ $expense->amount }} |
{{ $expense->accountingVoucher->voucher_number }} |
@endforeach
| Total Expense |
{{ $totalExpense }} |
@endsection
@section('script')
@endsection