@extends('home_layout.master_sidebar') @section('page_styles') @stop @section('breadcrumbs') @include('home_layout.breadcrumb', [ 'title' => 'Contacts', 'breadcrumbs' => [ ['title' => 'Home', 'link' => '#'], ['title' => 'Contacts', 'link' => '#'] ] ]) @stop @section('content')

Contacts

Import Contacts + New contact
@forelse($contacts as $contact) @empty @endforelse
Name Email Phone Address Last Booking Actions
{{ strtoupper(substr($contact->name, 0, 1)) }}
{{ $contact->email }} {{ $contact->phone ?? 'N/A' }} {{ $contact->address ?? 'N/A' }} @if($contact->bookings->count()) {{ $contact->bookings->last()->start_time }} @else N/A @endif Edit
@csrf @method('DELETE')
Invite Schedule Service
No contacts found.
@stop @section('page_scripts') @stop