@extends('layouts.admin.master') @section('title') View Committee Type @endsection @section('content')

Committee Type

Name

{{ $committeeType->name }}

Description

{{ $committeeType->description }}

Ordering

{{ $committeeType->ordering }}

Schedule Type

{{ config('services.schedule_type')[$committeeType->schedule_type] ?? 'N/A' }}

Start Date & Time

{{ $committeeType->schedule_datetime ? \Carbon\Carbon::parse($committeeType->schedule_datetime)->format('d M, Y h:i A') : 'N/A' }}

Field of Work

@if(!empty($committeeType->field_of_work)) @foreach(json_decode($committeeType->field_of_work, true) as $work) {{ $work }} @endforeach @else N/A @endif
@endsection