@extends('layouts.app') @section('content')
| {{ _lang('Date') }} | {{ _lang('Account') }} | {{ _lang('Category') }} | {{ _lang('Amount') }} | {{ _lang('Payment Method') }} | {{ _lang('View Details') }} |
|---|---|---|---|---|---|
| {{ date($date_format,strtotime($transaction->trans_date)) }} | {{ isset($transaction->account) ? $transaction->account->account_title : '' }} | {{ isset($transaction->expense_type->name) ? $transaction->expense_type->name : _lang('Transfer') }} | {{ decimalPlace($transaction->amount, currency($transaction->account->account_currency), $transaction->payer->currency) }} | {{ isset($transaction->payment_method) ? $transaction->payment_method->name : '' }} | {{ _lang('View') }} |