PRESUPUESTO

{{ $quotation->number }}
Emisor
@if($company->company_name)
{{ $company->company_name }}
@endif @if($company->address)
{{ $company->address }}
@endif @if($company->locality)
{{ $company->locality }}
@endif @if($company->cuit)
CUIT: {{ $company->cuit }}
@endif @if($company->phone || $company->email)
{{ $company->phone }} {{ $company->email }}
@endif
Cliente
{{ $quotation->client->name }}
@if($quotation->client->delivery_address)
{{ is_array($quotation->client->delivery_address) ? implode(', ', $quotation->client->delivery_address) : $quotation->client->delivery_address }}
@endif @if($quotation->client->locality)
{{ $quotation->client->locality }}
@endif @if($quotation->client->tax_id)
CUIT: {{ $quotation->client->tax_id }}
@endif
Fecha: {{ $quotation->created_at->format('d/m/Y') }} Moneda: {{ $quotation->currency ?? 'ARS' }} @if($quotation->valid_until) Válido hasta: {{ $quotation->valid_until->format('d/m/Y') }} @endif
@foreach($quotation->items as $item) @endforeach
Descripción Cant. P. unit. Desc. % IVA % Total
{{ $item->getDisplayDescription() }} {{ $item->quantity }} {{ $item->unit_price_formatted }} {{ $item->discount_percent }}% {{ $item->tax_rate }}% {{ $item->line_total_formatted }}
Subtotal: {{ ($quotation->currency ?? 'ARS') === 'USD' ? 'U$S ' : '$' }}{{ number_format($quotation->subtotal, 2, ',', '.') }}
IVA: {{ ($quotation->currency ?? 'ARS') === 'USD' ? 'U$S ' : '$' }}{{ number_format($quotation->tax_amount, 2, ',', '.') }}
TOTAL: {{ ($quotation->currency ?? 'ARS') === 'USD' ? 'U$S ' : '$' }}{{ number_format($quotation->total, 2, ',', '.') }}
@if($quotation->notes)
Notas:
{!! nl2br(e($quotation->notes)) !!}
@endif @if($quotation->terms)
Condiciones:
{!! nl2br(e($quotation->terms)) !!}
@endif