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

Nova ponuda

{!! BootForm::vertical([ 'model' => $formModel, 'store' => $route.'.store', 'autocomplete' => 'off', 'id' => 'main_form' ]) !!}
{!! BootForm::hidden('order_id', $order->id) !!} {!! BootForm::hidden('items', null, ['id' => 'items']) !!}
@foreach($order->items as $item) @endforeach
Naziv Količina Cijena
{{ $item->name }} {{ $item->quantity }}
{!! BootForm::textarea('note', 'Napomena') !!}
{!! BootForm::close() !!}
@stop @section('js') @stop