@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => $title])
Meeting Title {{ $item->title }}
Date {{ $item->date }}
Client {{ ($item->client)->client_name }}
Team Member {{ ($item->employee)->first_name }}
Start Time {{ Carbon::parse($item->start_time)->format('h:i A') }}
End Time {{ Carbon::parse($item->end_time)->format('h:i A') }}
Location {{ $item->location }}
Description {{ $item->description }}
@endsection @push('js') @endpush