@extends('admin/layouts/default') {{-- title --}} @section('title') Order #{{ $item->id }} :: @parent @stop {{-- content --}} @section('content')
@include('admin/notifications')
@if($item->person_type == 0)
@else
@endif

Shipping details


Payment details


Products

@foreach($item->getProducts() as $product) @endforeach
Name Qty. Price Total
{{ $product->name }} {{ $product->quantity }} {{ $product->price }} {{ $product->quantity * $product->price }}
Total Produse: {{ $item->total_products }} Lei
@if($item->coupon_code != '' && $item->coupon_discount_value > 0)
Discount coupon {{ $order->coupon_code }}: -{{ $order->discount }} Lei
@endif
Cost livrare: {{ ($item->shipping_tax > 0 ? $item->shipping_tax .' Lei' : 'Gratuit') }}
Total: {{ $item->total }} Lei
@stop @section('scripts') @parent @stop