@extends('layouts.app') @inject('employeeRepository', 'Modules\Employee\Repositories\EmployeeRepository') @use('Carbon\Carbon') @section('content')

{{ $item->title }}

{{ $item->location }}

Date :

{{ $item->date }}

Start Time :

{{ Carbon::parse($item->start_time)->format('h:i A') }}

End Time:

{{ Carbon::parse($item->end_time)->format('h:i A') }}

Type:

{{ $item->meeting_with }}

Client:

{{ @$item->client?->client_name }}
Description
{!! Str::limit($item->description, 666) !!} @if (strlen($item->description) > 666) See More @endif
Meeting Minute List
@foreach ($minutes as $minute)
{{ substr($minute->agenda, 0, 1) }}
{{ $minute->agenda }}

{!! $minute->description !!}

@isset($minute->assignedUser) @foreach ($minute->assignedUser as $assignedId) @endforeach @endisset
{{ $minute->created_at?->format('d M, Y') }}
@endforeach
Meeting Minute
{{ html()->form('POST')->route('meeting.storeSubTask')->class(['needs-validation'])->attributes(['novalidate', 'enctype' => 'multipart/form-data'])->open() }} {{ html()->hidden('meeting_id', $item->id) }}
{{ html()->label('Agenda')->class('form-label') }} {{ html()->textarea('agenda')->class('form-control')->placeholder('Enter Agenda')->required() }} {{ html()->div('Please enter agenda')->class('invalid-feedback') }}
{{ html()->label('Attendees')->class('form-label') }} {{ html()->multiselect('attendees[ids][]', $employeeList)->class('form-control select2')->value($item->members['ids'] ?? null)->attributes(['multiple', 'id' => 'teams']) }} {{ html()->div('Please enter attendees')->class('invalid-feedback') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control ckeditor-classic')->placeholder('..') }}
{{ html()->form()->close() }}
Team Members
@endsection @push('js') @endpush