diff --git a/resources/views/projects/show.blade.php b/resources/views/projects/show.blade.php index 379d80e..d7290f2 100644 --- a/resources/views/projects/show.blade.php +++ b/resources/views/projects/show.blade.php @@ -21,7 +21,7 @@
{{ $project->customer->email }}
- + @@ -52,14 +52,50 @@ - + + + + + +
+
+
+
+

+ {{ __('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') }} + + {{ __('form.Edit') }}