@extends('layouts.app') @section('page-title')

{{ __($pageTitle) }} #{{ $project->id }} - {{ ucwords($project->project_name) }}

@lang('app.edit')
@endsection @section('content')
@include('admin.projects.show_project_menu')

@lang('app.menu.payments')

@forelse ($project->payments as $key=>$item) @empty @endforelse
# @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')
{{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection