@extends('layouts.contentLayoutMaster') @section('title','My Appointments') @section('content')
| When | Title | Agent | Status | Location | Action |
|---|---|---|---|---|---|
| {{ $a->starts_at->format('M d, Y g:i A') }} | {{ $a->title }} | {{ optional($a->agent)->first_name }} {{ optional($a->agent)->last_name }} | {{ ucfirst($a->status) }} | {{ $a->location ?: '—' }} | @if($a->status === 'pending') @else — @endif |
| No appointments yet. | |||||