@extends('layouts.app') @section('page-title')
{{ __($pageTitle) }}
@lang('app.menu.home')
{{ __($pageTitle) }}
@lang('app.menu.invoices')
@endsection @section('content')
@include('admin.clients.client_header')
@include('admin.clients.tabs')
{{ __('app.project') }}
{{ __('app.invoice') . '#' }}
{{ __('modules.invoices.amount') }}
{{ __('modules.payments.paidOn') }}
@forelse($payments as $payment)
@if (!is_null($payment->project))
{{ ucfirst($payment->project->project_name) }}
@else -- @endif
@if (!is_null($payment->invoice))
{{ ucfirst($payment->invoice->invoice_number) }}
@else -- @endif
{{ currency_formatter($payment->amount,'') .' ('.$payment->currency->currency_code . ')' }}
{{ $payment->paid_on->format($global->date_format . ' ' . $global->time_format) }}
@empty
@lang('messages.noPaymentFound')
@endforelse
@endsection @push('footer-script') @endpush