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

Pedidos Listar todos

@include('partials.success') @foreach($proposals as $proposal) @endforeach
Nombre Venta Ganancia 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
${{ number_format($proposal->total,2,'.',',')}} ${{ number_format($proposal->profit,2,'.',',')}}
{{$proposal->status->name}}
{{$proposal->created_at}} Ver pedido
@if(\Auth::user()->person->employee->rol->name == 'admin') @endif
@endsection @section('js') @endsection