@extends('layouts.nav') @section('title') {{$JournalType}} Receipt @endsection @section('content')

{{$JournalType}} Receipt

Process Receipt
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf

{{$JournalType}} Transactions
Process
@foreach ($Jts as $Jt) @php $contractCode = $Jt->ContraCode; if (!empty($Jt->ContraSubCode)) { $contractCode .= '/' . $Jt->ContraSubCode; } @endphp @endforeach
Entry Date Description Account Reference Total Action
Entry Date Description Account Reference Total Action
{{ $Jt->EntryDate }} {{ $Jt->Narration }}{{ $contractCode }} {{ $Jt->Refference }} {{ number_format($Jt->DR * $Jt->Rate, 2) }}

Total Amount:

{{ $symbol.' '.number_format($total, 2) }}

@endsection