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

Contactos Listar todos

@if(\Auth::user()->subscriptionActive()->status=='active') @endif
Selected
@include('partials.success') @foreach($contacts as $contact) @endforeach
Nombre Celular Fecha
{{$contact->person->full_name}} @if(count($contact->person->emails) != 0) @foreach($contact->person->emails as $item) {{$item->email}} @if(count($contact->person->emails)>1 && !$loop->last), @endif @endforeach @endif
@if(count($contact->person->phones) != 0) @foreach($contact->person->phones as $item) {{$item->phone}} @if(count($contact->person->phones)>1 && !$loop->last), @endif @endforeach @endif
{{$contact->status->name}}
{{$contact->created_at}} Acciones
@endsection @section('js') @endsection