@extends('layouts.master_app') @section('title') Productos @endsection @section('css') @endsection @section('content')

Clientes

@foreach($person_companies as $item) @endforeach
# Empresa Nombre Tel Email
{{$loop->index+1}} {{$item->person->person_company->company->name}} @if($item->person->person_company->client_id==null) Prospecto @endif @if($item->person->person_company->client_id!=null) Cliente: {{ $item->person->person_company->client_id }} @endif {{$item->person->first_name}} {{$item->person->last_name}} {{$item->person->mothers_last_name}} {{$item->person->phones[0]->phone }} {{$item->person->emails[0]->email }} Ver más
@endsection @section('js') @endsection