@php $menu = [ [ 'title' => 'Dashboard', 'icon' => 'icon-Layout-4-blocks', 'route' => 'dashboard', 'type' => 'single', ], [ 'title' => "Manage Student's Profile", 'icon' => 'icon-Layout-grid', 'type' => 'tree', 'children' => [ ['route' => 'student-list', 'label' => 'Personal Detail'], ['route' => 'student-academic', 'label' => 'Student Academic'], ['route' => 'student-marks', 'label' => 'Student Marks'], ['route' => 'student-document', 'label' => 'Student Documents'], ['route' => 'student-experience', 'label' => 'Student Experience'], ['route' => 'project-internship', 'label' => 'Project Internship'], ['route' => 'student-certification', 'label' => 'Student Certification'], ] ], [ 'title' => 'Manage Company', 'icon' => 'fa fa-institution', 'type' => 'tree', 'children' => [ ['route' => 'company-list', 'label' => 'Company List'], ['route' => 'sectors', 'label' => 'Sectors'], ] ], [ 'title' => 'Summer Internships', 'icon' => 'fa fa-briefcase', 'type' => 'tree', 'children' => [ [ 'route' => 'add-intern', 'label' => 'Add Internship', 'permission' => 'add-intern' ], ['route' => 'intern-list', 'label' => 'Internship List'], ] ], [ 'title' => 'Final Placement', 'icon' => 'fa fa-graduation-cap', 'type' => 'tree', 'children' => [ [ 'route' => 'add-job', 'label' => 'Add Job', 'permission' => 'add-job' ], ['route' => 'job-list', 'label' => 'Job List'], ] ], [ 'title' => 'Manage PPO/Opt-Out', 'icon' => 'fa fa-user', 'type' => 'tree', 'children' => [ ['route' => 'student-status', 'label' => 'Student Status'], ] ], [ 'title' => 'Placement Report', 'icon' => 'fa fa-bar-chart', 'route' => 'placement-report', 'type' => 'single', ], [ 'title' => 'Company wise Report', 'icon' => 'fa fa-bar-chart', 'route' => 'company-wise-report', 'type' => 'single', ], [ 'title' => 'User Management', 'icon' => 'fa fa-user', 'type' => 'tree', 'permission' => 'user-management', 'children' => [ ['route' => 'user-list', 'label' => 'User List'], ['route' => 'user-permission', 'label' => 'Permissions'], ] ], ]; @endphp