@extends('layouts.app') @section('content')

All External Engagements

Department @if(auth()->user()->role_id == 1) {{-- Admin: can choose any department --}} @else {{-- Coordinator/Faculty: department is fixed --}} @endif
Activity
Date Range to
@php use Illuminate\Support\Str; $labels = [ 'Faculty', 'Department', 'Activity', 'Activity Description', 'Inviting Organization', 'Start Date', 'End Date', 'Num Days', ]; $columns = []; foreach ($labels as $i => $label) { $columns[] = [ 'label' => $label, 'id' => 'column-' . Str::slug($label, '-'), 'value' => $i + 2, 'checked' => true, ]; } @endphp
ID Faculty Department Activity Activity Description Inviting Organization Start Date End Date Num Days Actions
@endsection @section('scripts') @endsection