@extends('layouts.master_app') @section('title') Cotizaciones @endsection @section('menu_proposals', 'here show') @section('css') @endsection @section('content')

Cotizaciones Listar todos

Selected
@include('partials.success') @foreach($proposals as $proposal) @endforeach
Contacto Asesor Total Status Fecha
{{$proposal->contact->person->full_name}} @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
@if(count($proposal->proposal_advisors) >1) @endif @if(count($proposal->proposal_advisors) == 1) {{$proposal->proposal_advisors[0]->user->person->fullname}} @endif ${{ number_format($proposal->total,2,'.',',') .' '. $proposal->currency }}
{{$proposal->status->name}}
{{$proposal->created_at}} Ver cotización
@endsection @section('js') @endsection