@extends('adminlte::page') @section('title_postfix', ' - Upit kupaca') @section('content')

Podaci o kupcu

Naziv {{ $order->name }}
Adresa {{ $order->address }}
Poštanski broj {{ $order->zip_code }}
Mjesto {{ $order->city }}
OIB {{ $order->oib }}
Telefon {{ $order->phone }}
Kontakt osoba {{ $order->contact_person }}
Napomena {{ $order->note }}

Sadržaj upita

@foreach($order->items as $item) @endforeach
ID Naziv Količina
{{ $item->id }} {{ $item->name }} {{ $item->quantity }}
@stop @section('js') @stop