@extends('layouts.app') @section('content')
{{ _lang('View Income') }} @php $date_format = get_company_option('date_format','Y-m-d'); @endphp
{{ _lang('Trans Date') }}{{ date($date_format, strtotime($transaction->trans_date)) }}
{{ _lang('Account') }}{{ $transaction->account->account_title }}
{{ _lang('Income Type') }}{{ $transaction->income_type->name }}
{{ _lang('Amount') }}{{ decimalPlace($transaction->amount, currency($transaction->account->account_currency)) }}
{{ _lang('Base Amount') }}{{ decimalPlace($transaction->base_amount, currency()) }}
{{ _lang('Payer') }}{{ isset($transaction->payer->contact_name) ? $transaction->payer->contact_name : '' }}
{{ _lang('Payment Method') }}{{ $transaction->payment_method->name }}
{{ _lang('Reference') }}{{ $transaction->reference }}
{{ _lang('Note') }}{{ $transaction->note }}
@endsection