@extends('layout.index', [ 'title' => 'Commandes', 'subtitle' => 'Edition d\'une commandes', 'breadcrumb' => ['Commandes'] ]) @section('content') {{ Form::open(['route' => 'Admin.Shop.Orders.update', 'id' => 'order-form', 'autocomplete' => 'off']) }}
{{ $order['last_name'] }} {{ $order['first_name'] }}
{{ $order['delivery']['name'] }}
{{ $order['address'] }}
{{ $order['address2'] }}
{{ $order['zipcode'] }} {{ $order['city'] }}
@foreach ($order['details'] as $detail) @endforeach
{{ $detail['quantity'] }} {{ $detail['name'] }} {{ $detail['price'] }} {{ $detail['total'] }}
@endsection