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

All Industrial Visits Organised

Department @if(auth()->user()->role_id == 1) {{-- Admin: can choose any department --}} @else {{-- Coordinator/Faculty: department is fixed --}} @endif
Target Audience
Date Range to
@php use Illuminate\Support\Str; $labels = [ 'Company Name', 'Resource Person', 'Target Audience', 'Department', 'Faculty', 'Start Date', 'End Date', 'Student Year', 'Participants', ]; $columns = []; foreach ($labels as $i => $label) { $columns[] = [ 'label' => $label, 'id' => 'column-' . Str::slug($label, '-'), 'value' => $i + 2, 'checked' => $label !== 'Student Year', ]; } @endphp
ID Company Name Resource Person Target Audience Department Faculty Start Date End Date Student Year Participants Actions
@endsection @section('scripts') @endsection