@extends('layouts.admin') @section('title', 'Income ' . $income->income_number) @section('page-title', 'Income Details') @section('content')
Date: {{ $income->income_date->format('M d, Y') }}
Account
{{ $income->account->name }} ({{ $income->account->code }})
Customer
{{ $income->customer->name }}
Payment Method
{{ ucfirst(str_replace('_', ' ', $income->payment_method)) }}
Amount
{{ $income->currency }} {{ number_format($income->total, 2) }}
Description
{{ $income->description }}
Notes
{{ $income->notes }}