@extends('layouts.site') @section('title', 'Detalii comanda') @section('content')
@include('partial.logout-link') @include('partial.logout-form')
Comanda {{ $order->code }}
Statusul comenzii: {{ $order->status }}
Metodă plată: Ramburs la livrare
Data comenzii: {{ $order->created_at->format('d.m.Y') }}
AWB curier: 45874596554652967
Adresă livrare
Arad - easybox Kaufland Banu Maracine Str. Banu maracine
Adresă facturare
Str Voluntarilor nr 2 Bl R17 Sc A+B Et 7 Ap 37
@foreach($order->products as $product)
{{ $product->name }}
@endforeach
{{-- Descarcă--}} {{-- factură--}} {{-- --}} {{-- --}} {{-- --}} {{-- --}}
Cost produse: {{ $order->subtotal }} Lei
Cost livrare: {{ $order->transport }} Lei
Cost procesare:0,99 Lei
Total: {{ $order->total }} Lei
@endsection