@extends('layouts.app', ['page' => 'invoices']) @section('title', __('messages.invoice_details')) @section('page_header')
| Servicio | Cantidad | Precio | @if($invoice->tax_per_item)Impuesto | @endif @if($invoice->discount_per_item)Descuento | @endifTotal |
|---|---|---|---|---|---|
|
{{ preg_replace('/\((.*?)\)/i', '', $item->product->name) }}
{!! nl2br(htmlspecialchars($item->product->description)) !!}
|
{{ $item->quantity }} | {!! money($item->price, $invoice->currency_code)->format() !!} | @if($invoice->tax_per_item)
@foreach ($item->getTotalPercentageOfTaxesWithNames() as $key => $value)
{{ $key }} @endforeach |
@endif
@if($invoice->discount_per_item)
{{ $item->discount_val }}% | @endif{!! money($item->total, $invoice->currency_code)->format() !!} |
dvr {{ __('messages.activities') }}
@if($activities->count() > 0) @foreach($activities as $activity)| Cliente: | {{ $invoice->customer->display_name }} |
| Correo: | {{ $invoice->customer->email }} |
| Teléfono: | {{ $invoice->customer->phone }} |
| Sucursal: | {{ $invoice->sucursal }} |
| Tracking: | {{ $invoice->tracking }} |
| Tienda: | {{ $invoice->web }} |
| Cantidad de productos: | {{ $invoice->cantidad }} |
| Precio Total del Producto: | {{ $invoice->precio_total }} |
| Servicio de Compra (SIN ITBMS): | {{ $invoice->servi_compra }} |
| Libras Estimadas: | {{ $invoice->librasest }} |
| Flete de Compra: | {{ $invoice->flete_compra }} |
| Productos: | {{ $invoice->productos }} |
| Link de Producto: | {{ $invoice->links }} |
| Detalles: | {{ $invoice->detalles }} |