{{-- Header Section
{{ __('t.dash') }} {{ __('t.other_transactions') }}
--}} {{-- Transaction Card --}}
{{-- Navigation Tabs --}} {{-- Transaction List --}}
@forelse($this->transactions as $history)
@if($history->type == 'Credit') @else @endif
{{ Number::currency($history->amount, $settings->s_currency) }}
{{ $history->narration }}
@if($history->type == 'Credit')
{{ __('t.credit') }}
@else
{{ __('t.debit') }}
@endif
{{ $history->created_at->format('M d, Y h:i A') }}
@empty

{{ __('t.no_transactions') }}

{{ __('t.transaction_history') }}

@endforelse {{-- Pagination --}}
{{ $this->transactions->links() }}