@extends('layouts.admin') @section('title', 'Income') @section('page-title', 'Income') @section('header-actions') add Record Income @endsection @section('content')
@forelse($income as $item) @empty @endforelse
Income # Account Customer Amount Date Status Actions
{{ $item->income_number }} {{ $item->account->name }} {{ $item->customer->name ?? '-' }} {{ $item->currency }} {{ number_format($item->total, 2) }} {{ $item->income_date->format('M d, Y') }} {{ ucfirst($item->status) }} visibility
trending_up

No income records found

@if($income->hasPages())
{{ $income->links() }}
@endif
@endsection