@extends('layouts.admin') @section('content')
| Producto | Combinaciones | Precio | Cantidad | Descuento | Total |
|---|---|---|---|---|---|
|
{{ $product->product->name }}
{{-- @if ( $product->product->variation)
{{ $product->product->variation->name }}:
{{ App\Models\VariationItem::find($product->pivot->variation_id)->name }}
@endif
--}}
|
{{-- @if ($product->combinations->count())
|
${{ number_format($product->price+$product->discount, 2) }} | {{$product->quantity}} | ${{ number_format($product->discount, 2) }} | ${{ number_format($product->price * $product->quantity, 2) }} |
| Descuento | ${{ number_format($order->discount, 2) }} | ||||
| Total | ${{ number_format($order->total, 2) }} | ||||
| Producto | Bonificación | Cantidad |
|---|---|---|
| {{ $bonification->product->name }} | {{ $bonification->bonification->name }} | {{ $bonification->quantity }} |
{{$order->request}}
Response
{{$order->response}}