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

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

@endsection @section('content')
@include('client.projects.show_project_menu')
    @forelse($project->invoices as $invoice) @php $flag = 0; @endphp @if ($invoice != "draft" && $invoice->send_status)
  • {{ $invoice->currency->currency_symbol }} {{ $invoice->total }}
    @if($invoice->status == 'unpaid') @else @endif
    {{ $invoice->issue_date->format($global->date_format) }}
  • @php $flag = 1; @endphp @endif @if ($flag == 0)
  • @lang('messages.noInvoice')
  • @endif @empty
  • @lang('messages.noInvoice')
  • @endforelse
{{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush