@extends('app') @section('content')

Πελάτης - {{ $order->client->last }} {{ $order->client->first }}

Τηλέφωνο: {{ $order->client->phone }}  Κινητό: {{ $order->client->mobile }}

Παραγγελία: κωδ. {{ $order->id }}    Σύνολο: {{ $order->getTotal() }} (έκπτωση {{ $order->discount }}%)    Υπόλοιπο: {{ $order->getRemaining() }}    Ημερομηνία: {{ $order->created_at->format('D j M \'y') }}


Δόσεις

{{--First item for insert--}}
{{ csrf_field() }}
{{--Foreach--}} @foreach($order->installments()->orderBy('date', 'desc')->get() as $installment) @endforeach
{{----}}
@stop @section('scripts') @stop