@extends('layouts.master_app') @section('title') {{$proposal->name}} @endsection @section('css') @endsection @section('content')

Propuesta {{$proposal->name}}

Fecha:
Folio #
Fecha vencimiento:
Email: @if(count($proposal->contact->person->emails) != 0) @foreach($proposal->contact->person->emails as $item) {{$item->email}} @if(count($proposal->contact->person->emails)>1 && !$loop->last), @endif @endforeach @endif
Teléfono: @if(count($proposal->contact->person->phones) != 0) @foreach($proposal->contact->person->phones as $item) {{$item->phone}} @if(count($proposal->contact->person->phones)>1 && !$loop->last), @endif @endforeach @endif
Nombre: {{$proposal->contact->person->full_name}}
Estado: @if(isset($proposal->contact->state)) {{$proposal->contact->state->name}} @endif
Concepto Cantidad Precio unitario Total
@{{item.total | currency }}
Agregar concepto
Subtotal
$ @{{formData.subtotal_costs}}
Agregar descuento
Descuento
%
$ @{{formData.subtotal_costs * (discount/100) | number : fractionSize}}
Agregar impuesto
%
$ @{{ (formData.subtotal_costs - (formData.subtotal_costs * (discount /100 )) ) * ((tax_amount/100)) | number : fractionSize }}
Total $ @{{ (formData.subtotal_costs - (formData.subtotal_costs * (discount /100 )) )* (1+(tax_amount/100)) | number : fractionSize }}
@if($proposal->created_at != $proposal->updated_at)
@endif
@endsection @section('js') @endsection