@extends('layouts.admin') @section('title', 'Income ' . $income->income_number) @section('page-title', 'Income Details') @section('content')

{{ $income->income_number }}

Date: {{ $income->income_date->format('M d, Y') }}

{{ ucfirst($income->status) }}

Account

{{ $income->account->name }} ({{ $income->account->code }})

@if($income->customer)

Customer

{{ $income->customer->name }}

@endif

Payment Method

{{ ucfirst(str_replace('_', ' ', $income->payment_method)) }}

Amount

{{ $income->currency }} {{ number_format($income->total, 2) }}

@if($income->description)

Description

{{ $income->description }}

@endif @if($income->notes)

Notes

{{ $income->notes }}

@endif
@endsection