@extends('admin.layouts.app') @push('css') @endpush @section('content')
{{ \Carbon\Carbon::parse($order->created_at)->format('d/m/Y H:i') }}
Total de la orden
| Producto | Precio Unit. | Cantidad | Total |
|---|---|---|---|
{{ $item->name }}@if($item->size || $item->color) @if($item->size) Talla: {{ $item->size }} @endif @if($item->color) Color: {{ $item->color }} @endif @endif |
${{ number_format($item->price, 2) }} | {{ $item->qty }} | ${{ number_format($item->total, 2) }} |
| Subtotal: | ${{ number_format($order->subtotal, 2) }} | ||
| Descuento @if(!empty($order->coupon_code))({{ $order->coupon_code }})@endif: | -${{ number_format($order->discount, 2) }} | ||
| Envío: | ${{ number_format($order->shipping, 2) }} | ||
| TOTAL GENERAL: | ${{ number_format($order->grand_total, 2) }} | ||