Τηλέφωνο: {{ $order->client->phone }} Κινητό: {{ $order->client->mobile }}
Παραγγελία: κωδ. {{ $order->id }}
Σύνολο: {{ $order->getTotal() }} (έκπτωση {{ $order->discount }}%)
Υπόλοιπο: {{ $order->getRemaining() }}
Ημερομηνία: {{ $order->created_at->format('D j M \'y') }}
@foreach($order->orderItems as $orderItem)
-
{{ $orderItem->subCategory->category->getUcWordsName() }}
{{ $orderItem->subCategory->getUcWordsName() }}
(επισκ. x {{ $orderItem->visits }})
@endforeach
Δόσεις
{{--First item for insert--}}
{{--Foreach--}}
@foreach($order->installments()->orderBy('date', 'desc')->get() as $installment)
@endforeach
{{--
@foreach($order->installments()->orderBy('created_at', 'desc')->get() as $installment)
-
{{ $installment->updated_at->toFormattedDateString() }}
{{$installment->id . " " . $installment->sum }}
@endforeach
--}}
@stop
@section('scripts')
@stop