@extends('backend.layouts.app') @section('content')
| Income Type | {{ $income->incomeType->name ?? '-' }} |
|---|---|
| Title | {{ $income->title }} |
| Amount | {{ number_format($income->amount, 2) }} |
| Income Date | {{ $income->income_date ? \Carbon\Carbon::parse($income->income_date)->format('d M, Y') : '-' }} |
| Payment Date | {{ $income->payment_date ? \Carbon\Carbon::parse($income->payment_date)->format('d M, Y') : '-' }} |
| Payment Type | {{ ucfirst(str_replace('_', ' ', $income->payment_type)) ?? '-' }} |
| Transaction No | {{ $income->transaction_no ?? '-' }} |
| Account | @if ($income->account) @if ($income->account->type == 'Mobile Bank') {{ $income->account->company_name }} ({{ $income->account->mobile_number }}) @else {{ $income->account->bank_name }} - {{ $income->account->account_number }} @endif @else - @endif |
| Received By | {{ $income->received_by ?? '-' }} |
| Received Date | {{ $income->received_date ? \Carbon\Carbon::parse($income->received_date)->format('d M, Y') : '-' }} |
| Payment Remark | {{ $income->payment_remark ?? '-' }} |
| Description | {{ $income->description ?? '-' }} |