Basic Information
{{ $project->activity_title }}
@if (!empty($project->project_status))
{{ $project->project_status->name }}
@endif
@if (!empty($is_user) || $user_role == 'ADMIN' || $user_role == 'ED')
Edit project
@endif
- Activity ID:
- {{ $project->activity_id }}
- Project ID:
@if (!empty($project->project_code))
- {{ $project->project_code }}
@else
- N/A
@endif
- Joint Provider:
@if (!empty($project->joint_provider))
- {{ $project->joint_provider->jp_code }}
@else
- N/A
@endif
- JP CR Code:
@if (!empty($project->jp_cr_code))
- {{ $project->jp_cr_code }}
@else
- N/A
@endif
- Joint Provider 2:
@if (!empty($project->joint_provider_2))
- {{ $project->joint_provider_2->jp_code }}
@else
- N/A
@endif
- Joint Provider 3:
@if (!empty($project->joint_provider_3))
- {{ $project->joint_provider_3->jp_code }}
@else
- N/A
@endif
- Activity Type:
@if (!empty($project->activity_type))
- {{ $project->activity_type }}
@else
- N/A
@endif
@if (!empty($project->providership))
- Activity Providership:
- {{ $project->providership }}
@endif
- Commercial Support Received:
@if (!empty($project->has_commercial_support))
- {{ $project->has_commercial_support }}
@else
- N/A
@endif
- Activity URL:
@if (!empty($project->activity_url))
- {{ $project->activity_url }}
@else
- N/A
@endif
- Start Date:
- {{ date('Y-m-d', strtotime($project->start_date)) }}
- Expiration Date:
- {{ date('Y-m-d', strtotime($project->expiration_date)) }}
- Last Updated:
- {{ date('Y-m-d', strtotime($project->updated_at)) }}
- Created:
- {{ date('Y-m-d', strtotime($project->created_at)) }}
@php
$jp_contacts = null;
if (!empty($project->jp_contacts)) {
$jp_contacts = $project->jp_contacts;
}
@endphp
@if (count($jp_contacts) > 0)
Target Audience for Activity
@foreach ($jp_contacts as $jp_contact)
{{ $jp_contact->contact_name }}
@endforeach
@endif
@php
$jp_contacts_2 = null;
if (!empty($project->jp_contacts_2)) {
$jp_contacts_2 = $project->jp_contacts_2;
}
@endphp
@if (count($jp_contacts_2) > 0)
Target Audience for Activity
@foreach ($jp_contacts_2 as $jp_contact)
{{ $jp_contact->contact_name }}
@endforeach
@endif
@php
$jp_contacts_3 = null;
if (!empty($project->jp_contacts_3)) {
$jp_contacts_3 = $project->jp_contacts_3;
}
@endphp
@if (count($jp_contacts_3) > 0)
Target Audience for Activity
@foreach ($jp_contacts_3 as $jp_contact)
{{ $jp_contact->contact_name }}
@endforeach
@endif
@php
$target_audiences = '';
if (!empty($project->audience_types)) {
$target_audiences = $project->audience_types;
}
@endphp
Target Audience for Activity
@if (isset($target_audiences))
@foreach ($target_audiences as $target_audience)
{{ $target_audience->audience_type }}
@endforeach
@else
N/A
@endif
@if (!empty($project->meta->target_audience_other_reason))
Specification
{{ $project->meta->target_audience_other_reason }}
@endif
@php
$accreditation_type_projects = '';
if (!empty($project->accreditation_type_projects)) {
$accreditation_type_projects = $project->accreditation_type_projects;
}
@endphp
Accreditation Types (MLI)
@if (!empty($accreditation_type_projects) && isset($accreditation_type_projects))
@foreach ($accreditation_type_projects as $key => $accreditation_type)
@php
$criteria_list = null;
if (!empty(json_decode($accreditation_type->criteria))) {
$criteria_list = json_decode($accreditation_type->criteria);
$criteria_list = implode(', ', $criteria_list);
}
@endphp
{{ $accreditation_type->credit_type->credit_code ?? '' }}
{{ $accreditation_type->credit_type->level ?? 'N/A' }}:
{{ $accreditation_type->level_data ?? 'N/A' }}
Pharmacology Amount:
{{ $accreditation_type->pharmacology_amount ?? 'N/A' }}
Criteria:{{ $criteria_list ?? 'N/A' }}
@endforeach
@else
N/A
@endif
@php
$accreditation_type_non_mli_projects = null;
if (!empty($project->accreditation_type_non_mli_projects)) {
$accreditation_type_non_mli_projects = $project->accreditation_type_non_mli_projects;
}
@endphp
Accreditation Types (Non-MLI)
@if (!empty($accreditation_type_non_mli_projects) && isset($accreditation_type_non_mli_projects))
@foreach ($accreditation_type_non_mli_projects as $key => $accreditation_type)
@php
$criteria_list = null;
if (!empty(json_decode($accreditation_type->criteria))) {
$criteria_list = json_decode($accreditation_type->criteria);
$criteria_list = implode(', ', $criteria_list);
}
@endphp
{{ $accreditation_type->credit_type->credit_code ?? '' }}
{{ $accreditation_type->credit_type->level ?? 'N/A' }}:
{{ $accreditation_type->level_data ?? 'N/A' }}
Pharmacology Amount:{{ $accreditation_type->pharmacology_amount ?? 'N/A' }}
Criteria:{{ $criteria_list ?? 'N/A' }}
Accreditor:{{ $accreditation_type->accreditor ?? 'N/A' }}
@endforeach
@else
N/A
@endif
ILNA Codes
@if ($project->has_ilna)
@php
$ilna_points = json_decode($project->ilna_points);
@endphp
Total Point
{{ $project->ilna_total ?? '0' }}
@foreach ($ilna_points as $ilna_point)
{{ $ilna_point->subject_area }}:
{{ $ilna_point->assigned_point ?? '0' }}
@endforeach
@else
N/A
@endif
@php
$moc_boards = null;
if (!empty($project->moc_boards)) {
$moc_boards = $project->moc_boards;
}
@endphp
MOC/CC Boards
@if (isset($moc_boards))
@foreach ($moc_boards as $moc_board)
{{ $moc_board->board_code }}
@endforeach
@else
N/A
@endif
@php
$moc_credit_types = null;
if (!empty($project->moc_credit_types)) {
$moc_credit_types = $project->moc_credit_types;
}
@endphp
MOC/CC Board Credit Types
@if (isset($moc_credit_types))
@foreach ($moc_credit_types as $moc_credit_type)
{{ $moc_credit_type->credit_type }}
@endforeach
@else
N/A
@endif
@php
$moc_practices = null;
if (!empty($project->moc_practices)) {
$moc_practices = $project->moc_practices;
}
@endphp
MOC/CC Board Practices
@if (isset($moc_practices))
@foreach ($moc_practices as $moc_practice)
{{ $moc_practice->practice_areas }}
@endforeach
@else
N/A
@endif
Course Credit Amount
@if (!empty($project->course_credit_amount))
{{ $project->course_credit_amount }}
@else
N/A
@endif
Professional Practice Gap (JAC 4)
@if (!empty($project->meta->practice_gaps))
{{ $project->meta->practice_gaps }}
@else
N/A
@endif
Accreditation Type
@if (!empty($project->accreditation_type_4_ipce))
{{ $project->accreditation_type_4_ipce }}
@else
N/A
@endif
Educational need(s) (JAC 4)
Knowledge need
@if (!empty($project->meta->knowledge_need))
{{ $project->meta->knowledge_need }}
@else
N/A
@endif
Skills/Strategy need
@if (!empty($project->meta->skills_need))
{{ $project->meta->skills_need }}
@else
N/A
@endif
Performance need
@if (!empty($project->meta->performance_need))
{{ $project->meta->performance_need }}
@else
N/A
@endif
MOC/CC
@if ($project->moc == 1)
Yes
@else
No
@endif
OL3 - Knowledg
@if ($project->ol3_knowledge == 1)
Yes
@else
No
@endif
OL4 - Competence
@if ($project->ol4_competence == 1)
Yes
@else
No
@endif
OL5 - Performance
@if ($project->ol5_performance == 1)
Yes
@else
No
@endif
OL6 - Patient Outcomes
@if ($project->ol6_patient_outcomes == 1)
Yes
@else
No
@endif
OL7 - Community Health
@if ($project->ol7_community_health == 1)
Yes
@else
No
@endif
Description
@if (!empty($project->description))
{{ $project->description }}
@else
N/A
@endif
DoA or ED Notes
@if (!empty($project->doa_or_ed_notes))
{{ $project->doa_or_ed_notes }}
@else
N/A
@endif
TA keywords
@if (!empty($project->ta_keywords))
{{ $project->ta_keywords }}
@else
N/A
@endif
Change learner's skill/strategy or performance of HCT or patient
outcomes (JAC 5)
@if (!empty($project->meta->activity_designed))
{{ $project->meta->activity_designed }}
@else
N/A
@endif
Learning objectives / outcomes
@if (!empty($project->meta->learning_objectives))
{{ $project->meta->learning_objectives }}
@else
N/A
@endif
Valid Content Generation (JAC 6)
@if (!empty($project->meta->ensure_activity))
{{ $project->meta->ensure_activity }}
@else
N/A
@endif
Active learning for the HCT (JAC 7)
@if (!empty($project->meta->educational_format))
{{ $project->meta->educational_format }}
@else
N/A
@endif
Ancillary Support Tools or Strategies (JAC 9)
@if (!empty($project->meta->planned_strategies))
{{ $project->meta->planned_strategies }}
@else
N/A
@endif
@if (!empty($project->meta->barriers_strategies))
Barriers to Change for the HCT (JAC 10)
@php
$barriers_strategies = json_decode($project->meta->barriers_strategies);
@endphp
@foreach ($barriers_strategies as $barriers_strategy)
- {{ $barriers_strategy }}
@endforeach
@endif
Desirable Attributes of the HCT (JAC 8)
Institute of Medicine Competencies
@php $medicine_institutes = (!empty($project->meta->medicine_institutes)) ? json_decode($project->meta->medicine_institutes) : Null; @endphp
@if (!empty($medicine_institutes))
@foreach ($medicine_institutes as $medicine_institute)
- {{ $medicine_institute }}
@endforeach
@else
N/A
@endif
Interprofessional Collaborative Practice
@php $collaborative_practices = (!empty($project->meta->collaborative_practices)) ? json_decode($project->meta->collaborative_practices) : Null; @endphp
@if (!empty($collaborative_practices))
@foreach ($collaborative_practices as $collaborative_practice)
- {{ $collaborative_practice }}
@endforeach
@else
N/A
@endif
ACGME/ABMS Competencies
@php $acgme_abms_competencies = (!empty($project->meta->acgme_abms_competencies)) ? json_decode($project->meta->acgme_abms_competencies) : Null; @endphp
@if (!empty($acgme_abms_competencies))
@foreach ($acgme_abms_competencies as $acgme_abms_competencie)
- {{ $acgme_abms_competencie }}
@endforeach
@else
N/A
@endif
National Quality Strategy
@php $national_quality_strategy = (!empty($project->meta->national_quality_strategy)) ? json_decode($project->meta->national_quality_strategy) : Null; @endphp
@if (!empty($national_quality_strategy))
@foreach ($national_quality_strategy as $national_strategy)
- {{ $national_strategy }}
@endforeach
@else
N/A
@endif
CAPE Competencie
@php $cape_competencies = (!empty($project->meta->cape_competencies)) ? json_decode($project->meta->cape_competencies) : Null; @endphp
Knowledge
@if (!empty($cape_competencies->knowledge))
@foreach ($cape_competencies->knowledge as $knowledge)
- {{ $knowledge }}
@endforeach
@else
N/A
@endif
Practice and Care Approaches
@if (!empty($cape_competencies->practice_and_care_approaches))
@foreach ($cape_competencies->practice_and_care_approaches as $practice_and_care_approach)
- {{ $practice_and_care_approach }}
@endforeach
@else
N/A
@endif
Practice and Care Essentials
@if (!empty($cape_competencies->practice_and_care_essentials))
@foreach ($cape_competencies->practice_and_care_essentials as $practice_and_care_essentials)
- {{ $practice_and_care_essentials }}
@endforeach
@else
N/A
@endif
Personal and Profesional Development
@if (!empty($cape_competencies->personal_and_profesional_development))
@foreach ($cape_competencies->personal_and_profesional_development as $personal_and_profesional_development)
- {{ $personal_and_profesional_development }}
@endforeach
@else
N/A
@endif
Other Competency(ies)(specify)
@if (!empty($cape_competencies->other_competencies))
{{ $project->meta->other_competencies }}
@else
N/A
@endif