@extends('layouts.app') @section('page-title')
# | @lang('modules.invoices.amount') | @lang('modules.payments.paidOn') | @lang('app.remark') | @lang('app.status') | ||
---|---|---|---|---|---|---|
{{ $key+1 }} | @php $symbol = (!is_null($item->currency)) ? $item->currency->currency_symbol : ''; $code = (!is_null($item->currency)) ? $item->currency->currency_code : ''; echo $symbol . number_format((float) $item->amount, 2, '.', '') . ' (' . $code . ')'; @endphp | @if (!is_null($item->paid_on)) {{ $item->paid_on->format($global->date_format . ' ' . $global->time_format) }} @endif | {{ ucfirst($item->remarks) }} | @if ($item->status == 'pending') @else @endif | ||
@lang('messages.noRecordFound') |