@extends('admin.layout.default') @section('content')
PREDRAČUN št.: {{$order->ponudba_st}}/{{$order->order_num_leto}}
Podatki o naročilu
Predračun #:
{{$order->ponudba_st}}/{{$order->order_num_leto}}
Datum naročila:
{{date("d.m.Y", strtotime($order->order_date))}}
Status naročila:
{{$order->order_status}}
Znesek za plačilo:
+ {{number_format($order->order_price - $order->shipment_price, 2, ',', '.')}} €
Strošek poštnine:
+ {{number_format($order->shipment_price, 2, ',', '.')}} €
Znesek za plačilo:
= {{number_format($order->order_price, 2, ',', '.')}} €
Način plačila:
{{$order->payment_type}}
Kupec
{!! nl2br($order->order_address) !!}
Spremeni status naročila:       {!! csrf_field() !!}
KUPLJENI ARTIKLI:
@foreach($articles as $key => $row) @endforeach
ZS. Naziv artikla Cena Kol. Skupaj
{{$zs++}}. {{$row->name}}
{{sprintf("%.02f", $row->price)}} € {{$row->quantity or 0}} kos {{sprintf("%.02f", $row->price * $row->quantity)}} €
@endsection