@extends('layouts.app') @use('Carbon\Carbon') @section('content')
@include('layouts.partials.breadcrumb', ['title' => $title])
{{ $title }}
@foreach ($meetingLists as $index => $item) @endforeach
S.N Title Date Meeting with Client Team Member Start Time End Time Location Action
{{ $index + 1 }} {{ $item->title }} {{ $item->date?->format('Y-m-d') }}
({{ $item->date?->diffForHumans(Carbon::now()) }})
{{ $item->meeting_with }} {{ $item->meeting_with == 'client' ? $item->client?->client_name : '-' }} @if ($item->meeting_with == 'member')
@isset($item->members) @foreach ($item->members as $memberId) @endforeach @endisset
@else - @endif
{{ Carbon::parse($item->start_time)->format('h:i A') }} {{ Carbon::parse($item->end_time)->format('h:i A') }} {{ $item->location }}
@endsection