{{ __('project.Project') }} {{ $project->name }} ({{ $project->project_number }})

{{ __('customer.Customer') }}

{{ $project->customer->name }}
{{ $project->customer->email }}

{{ __('project.Project data') }}

{{ $project->name }}
{{ $project->project_number }}
{{ $project->description }}
{{ $project->start }}
{{ $project->end }}

{{ __('invoice.Invoices') }}

{{ __('invoice.Invoice Number') }}
{{ __('customer.Customer') }}
{{ __('common.Name') }}
{{ __('invoice.State') }}
{{ __('invoice.Sum') }}
{{ __('common.Created at') }}
@foreach($project->invoices as $invoice)
{{ $invoice->number }}
{{ $invoice->customer->name }}
{{ $invoice->address->name }}
{{ $invoice->localized_state }}
{{ \Illuminate\Support\Number::currency($invoice->sum) }}
{{ $invoice->created }}
@endforeach
{{ __('form.Edit') }}