@extends('layouts.main') @push('styles') @endpush @section('content')
| # | Staff In-Charge | Vendor | Transcation ID | Paid From Account | Memo | Payment Date | Record Date | Amount | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{ $count + 1 }} | {{ get_full_name($item->created_by, 'id', 'first_name', 'last_name', 'users') }} | {{ get_name($item->vendor, 'id', 'name', 'suppliers') }} | {{ $item->transaction_id }} | {{ get_name($item->account_id, 'id', 'name', 'chart_of_accounts') }} | {{ $item->memo }} | {{ streamline_date($item->expense_date) }} | {{ streamline_date_time_short($item->created_at) }} | {{ ugandan_shillings($item->sum) }} | @if($item->bill_id) Detail @else Detail @endif @if(Auth::user()->can('edit-payment-record')) @if (is_payment_transaction_reconciled($item->id) == false) {{ __('payments.edit') }} @else {{ __('payments.edit') }} @endif @endif @if(Auth::user()->can('delete-payment-record')) @if (is_payment_transaction_reconciled($item->id) == false) @else {{ __('payments.delete') }} @endif @endif |
| Total | {{ ugandan_shillings($total) }} |