Commit c6c5e025 by Angel MAS

omite facturacion

parent d3787e02
......@@ -71,7 +71,9 @@ setlocale(LC_MONETARY, 'en_US');
<p>Correo: <b>{{$client->email}}</b></p>
<p>Fecha de registro: <b>{{$client->created_at}}</b></p>
@if($shipping != null)
<p>Requiere factura: <b>{{$shipping->facturacion}}</b></p>
@if(config("shop.billing_enabled"))
<p>Requiere factura: <b>{{$shipping->facturacion}}</b></p>
@endif
@endif
</div>
......
......@@ -41,12 +41,16 @@ Datos del comprador:
@component('mail::panel')
@if(config("shop.billing_enabled"))
Facturación:
- Requiere factura: *** {{$order->facturacion}} ***
@if($order->facturacion == 'Si')
[Rellenar formulario de facturación]({{route('cart.facturacion', \Crypt::encryptString($order->id))}})
@endif
@endif
@if($shipping != null)
Datos de envio:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment