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

All Responses

Department
Category
Date Range to
@php use Illuminate\Support\Str; $labels = [ 'Title', 'Organising Institute', 'Address', 'Department', 'Faculty', 'Start Date', 'End Date', 'Days', 'Activity Type', 'Category', 'Level', ]; $columns = []; foreach ($labels as $i => $label) { $columns[] = [ 'label' => $label, 'id' => 'column-' . Str::slug($label, '-'), 'value' => $i + 2, 'checked' => $label !== 'Days', ]; } @endphp
ID Title Organising Institute Address Department Faculty Start Date End Date Days Activity Type Category Level Actions
@endsection @section('scripts') @endsection