@extends('layouts.app', ['page' => 'estimates']) @section('title', __('messages.estimate_details')) @section('page_header')
| Servicio | Cantidad | Precio | @if($estimate->tax_per_item)Impuesto | @endif @if($estimate->discount_per_item)Descuento | @endifTotal |
|---|---|---|---|---|---|
|
{{ preg_replace('/\((.*?)\)/i', '', $item->product->name) }}
{!! nl2br(htmlspecialchars($item->product->description)) !!}
|
{{ $item->quantity }} | {!! money($item->price, $estimate->currency_code)->format() !!} | @if($estimate->tax_per_item)
@foreach ($item->getTotalPercentageOfTaxesWithNames() as $key => $value)
{{ $key }} @endforeach |
@endif
@if($estimate->discount_per_item)
{{ $item->discount_val }}% | @endif{!! money($item->total, $estimate->currency_code)->format() !!} |
| Cliente: | {{ $estimate->customer->display_name ?? '' }} |
| Correo: | {{ $estimate->customer->email ?? '' }} |
| Estatus: | {{ $estimate->estatus }} |
| Status base: | {{ $estimate->status }} |
| Recordatorio 1: | {{ $estimate->record_uno }} |
| Recordatorio 2: | {{ $estimate->record_dos }} |
| Abono mínimo: | ${{ $estimate->abonominimo }} |
| Total: | {!! money($estimate->total, $estimate->currency_code)->format() !!} |