@extends('layouts.master') @section('page_title', 'Check-In') @section('content')
{{ Form::page_header("Check-In Meeting: " . $business->company, "checklist", null, $checkin_meeting->date_display) }}
@if(session('failure'))

{{ session('failure') }}

@endif
{{ Form::label_title('Headlines') }}
@foreach($checkin_headlines as $checkin_headline) @include('business.checkin_meeting._checkin_headline') @endforeach @if($can_see_analytics_link) @include('business.checkin_meeting._checkin_headline_analytics') @endif @if($business->_business_setting->data_studio_visible && $business->_business_setting->checkin_data_studio_link) @include('business.checkin_meeting._checkin_data_studio_reports') @endif
@if($can_edit) {{ Form::button_ex('Add Headline', "headline_list_manager.add_one( '". $checkin_meeting->create_checkin_headline_url ."', headline_selector.calc_new_handle_id('". $checkin_meeting->checkin_meeting ."'));", 'add_headline_btn_top', 'checkin-meeting-btn') }} @endif
{{ Form::label_title('Upcoming Key Dates') }}
@foreach($checkin_dates as $checkin_date) @include('business.checkin_meeting._checkin_date') @endforeach
@if($can_edit) {{ Form::button_ex('Add Key Date', "date_list_manager.add_one( '". $checkin_meeting->create_checkin_date_url ."', date_selector.calc_new_handle_id('". $checkin_meeting->checkin_meeting. "'));", 'add_date_btn_top', 'checkin-meeting-btn') }} @endif
{{ Form::label_title('Deliverable Progress') }}
@foreach($checkin_deliverables as $checkin_deliverable) @if($checkin_deliverable->display_option || $can_edit) @include('business.checkin_meeting._checkin_deliverable') @endif @endforeach
{{ Form::label_title('To-Dos') }}
@foreach($checkin_todos as $checkin_todo) @include('business.checkin_meeting._checkin_todo') @endforeach
@if($can_edit) {{ Form::button_ex('Add ToDo', "todo_list_manager.add_one( '". $checkin_meeting->create_checkin_todo_url ."', todo_selector.calc_new_handle_id('". $checkin_meeting->checkin_meeting ."'));", 'add_todo_btn_top', 'checkin-meeting-btn') }} @endif
{{ Form::label_title('Issues') }}
@foreach($checkin_issues as $checkin_issue) @include('business.checkin_meeting._checkin_issue') @endforeach
@if($can_edit) {{ Form::button_ex('Add Issue', "issue_list_manager.add_one( '". $checkin_meeting->create_checkin_issue_url ."', issue_selector.calc_new_handle_id('". $checkin_meeting->checkin_meeting ."'));", 'add_issue_btn_top', 'checkin-meeting-btn') }} @endif
{{ Form::button_ex('Download/Print', "window.location = '". $checkin_meeting->create_pdf_url ."';", null, 'checkin-meeting-btn') }} {{ Form::button_ex('Email', "open_multi_select_modal('email_summary', 'send_summary_email');", 'checkin_meeting_email', 'checkin-meeting-btn') }} {{ Form::button_ex('View Archive', "window.location = '". $checkin_meeting->meeting_archive_url ."';", null, 'checkin-meeting-btn') }}
@if($can_edit)
{{ Form::button_ex('Conclude Meeting', "window.location = '". $checkin_meeting->conclude_meeting_url ."';", 'checkin_meeting_conclude_btn', 'checkin-meeting-btn') }}
@endif
@include('shared.modals._multi_select_modal', ['title' => 'Send Email Summary', 'type' => 'email_summary', 'list' => $checkin_meeting->email_list]) @endsection @section('page_script') @include('shared_script._list_manager') @include('business.checkin_meeting._checkin_headline_script') @include('business.checkin_meeting._checkin_date_script') @include('business.checkin_meeting._checkin_deliverable_script') @include('business.checkin_meeting._checkin_todo_script') @include('business.checkin_meeting._checkin_issue_script') @include('shared_script._multi_select_checkbox_script') @include('shared_script.modals._multi_select_modal_script') {{ Html::script('/js/moment.min.js') }} {{ Html::script('/js/daterangepicker.js') }} @endsection @section('page_style') @include('shared_style._multi_select_checkbox_style') @include('shared_style.modals._multi_select_modal_style') {!! HTML::style('/css/daterangepicker.css') !!} {!! HTML::style('/css/daterangepicker_custom.css') !!} @endsection