@extends('layouts.master') @section('title', 'Contra Voucher Details') @section('page-header') Inter Company Details @stop @push('style') @endpush @section('content')
Voucher Type {{ $inter_company->voucher_type }}
Description {{ $inter_company->description }}
Invoice No {{ $inter_company->invoice_no }}
Date {{ $inter_company->date_time }}
| Sl | Account Name | Debit | Credit |
|---|---|---|---|
| {{ $loop->iteration }} | {{ optional($item->account)->name }} | @if ($item->balance_type == 'Debit') {{ number_format($item->amount, 2) }} @endif | @if ($item->balance_type == 'Credit') {{ number_format($item->amount, 2) }} @endif |
| Total | {{ number_format($inter_company->amount, 2) }} | {{ number_format($inter_company->amount, 2) }} | |