@extends('layouts.default') @section('title') Meeting Setup @endsection @section('header-style') @endsection @section('content')
Meeting Update
Requested
{!! csrf_field() !!} @method('PUT')
@if ($errors->has('meeting_type')) {{ $errors->first('meeting_type') }} @endif
@if ($errors->has('meeting_name')) {{ $errors->first('meeting_name') }} @endif
@if ($errors->has('chairperson')) {{ $errors->first('chairperson') }} @endif
@if ($errors->has('meeting_date')) {{ $errors->first('meeting_date') }} @endif
@if ($errors->has('start_time')) {{ $errors->first('start_time') }} @endif
@if ($errors->has('end_time')) {{ $errors->first('end_time') }} @endif
@if ($errors->has('actual_start_time')) {{ $errors->first('actual_start_time') }} @endif
@if ($errors->has('actual_end_time')) {{ $errors->first('actual_end_time') }} @endif
@if(!$operators->isEmpty())
@if ($errors->has('meeting_caller_user_id')) {{ $errors->first('meeting_caller_user_id') }} @endif
@else @endif
@if ($errors->has('meeting_location')) {{ $errors->first('meeting_location') }} @endif
@if ($errors->has('meeting_venue')) {{ $errors->first('meeting_venue') }} @endif
@if ($errors->has('agenda')) {{ $errors->first('agenda') }} @endif
@if ($errors->has('priority_id')) {{ $errors->first('priority_id') }} @endif
  • hasPermission('CAN_AUTHORIZED_AMS'))?'':'disabled'}} {{($data->status == 'P')?'checked': ''}} value="P">
  • hasPermission('CAN_AUTHORIZED_AMS'))?'':'disabled'}} {{($data->status == 'A')?'checked': ''}} value="A">
  • hasPermission('CAN_AUTHORIZED_AMS'))?'':'disabled'}} {{($data->status == 'C')?'checked': ''}} value="C">
  • hasPermission('CAN_AUTHORIZED_AMS'))?'':'disabled'}} {{($data->status == 'R')?'checked': ''}} value="R">
@if ($errors->has('meeting_status')) {{ $errors->first('meeting_status') }} @endif

Decision and Discussion

@if( isset($data->discussions) && count($data->discussions)>0) @foreach($data->discussions as $discussion) @if($discussion->status != 'D') @endif @endforeach @else @endif
Discussion Decision Action
@if($discussion->meeting_req_id==null) @else

External Meeting Request

@endif
{{-- @include('meeting.shared.participant')--}}

Required Person

@include('meeting.shared.group_participant')
TYPE NAME Organization Designation Department Mobile Note Tacker Status Add

@include('meeting.shared.mediaUpload')
  Cancel
@include('meeting.setupList')
@endsection