@extends('layouts.dashboard_layout') @section('title', 'Contactos') @section('content')
@foreach ($contactos as $contacto) @include('dashboard.contactos.modals.eliminar') @endforeach
# Nombre Identificacion Email
{{ $contacto?->id ?? 0 }} {{ $contacto?->nombre ?? ' }} {{ $contacto?->apellido ?? '}} {{ $contacto?->identificacion ?? ''}} {{ $contacto?->email ?? '' }}
@include('dashboard.contactos.modals.modal')
@endsection @section('scripts') @include('partials.scripts') @endsection