{{-- Care about people's approval and you will be their prisoner. --}} @can('view-income-transactions')

Incomes

List of all incomes

Filters Filters
{{ __('Close') }}
Excel
{{-- @can('create-income-transactions') @livewire('finincials.new-income-model', [], key('new-income')) @endcan --}}
{{-- --}} {{-- --}} @forelse ($incomes as $income) {{-- --}} {{-- --}} @empty @endforelse {{-- --}}
# Income Item Narration Curr Amount Received Date Cashier
{{ $loop->iteration }}
{{ substr($income->financialCategory->name, 0, 20) }}{{ strlen($income->financialCategory->name) > 20 ? '...' : '' }}
{{ substr($income->narration, 0, 15) }}{{ strlen($income->narration) > 15 ? '...' : '' }}
{{ $income->currency->symbol }} {{-- @if ($income->currency->symbol == 'UGX') --}} {{ $income->currency->symbol }} {{ number_format(round($income->amount, 2), 2) }} {{-- @php $total = $income->amount; @endphp @else @php $rate = App\Models\FinancialRate::withTrashed()->findOrFail($income->rate_id); if ($rate->base_currency_id == $income->currency_id) { $v = $income->amount * $rate->rate; echo $v; $total += $v; } else { $v = $income->amount / $rate->rate; echo $v; $total += $v; } @endphp @endif --}} {{ Carbon\Carbon::parse($income->date_of_pay)->format('d-m-Y') }}
{{ substr($income->receivedBy->name, 0, 15) }}{{ strlen($income->receivedBy->name) > 15 ? '...' : '' }}
No financial incomes found.
Total: {{ $total }}
{{ $incomes->links() }}
@endcan