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

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

@endsection @section('content')
@include('client.projects.show_project_menu')
    @php $flag = 0; @endphp @forelse($project->invoices as $invoice) @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 @empty
  • @lang('messages.noInvoice')
  • @php $flag = 1; @endphp @endforelse @if ($flag == 0)
  • @lang('messages.noInvoice')
  • @endif
{{-- Ajax Modal --}} {{-- Ajax Modal Ends --}} @endsection @push('footer-script') @endpush