@extends('frontend.mainlayout')
@section('title', 'Events (CSE Department)')
@section('banner')
Events (CSE Department)
{{--
Welcome to RERF Group of Institutions' NSS Cell,
empowering students through
community service and social impact.
--}}
@endsection
@section('main')
@php
$imageSets = [
[
'title' => 'Farewell of 2023',
'folder' => '15.7.23 Farewell of 2023 batch',
'images' => ['15.7.23 Farewell of 2023 batch-01.webp', '15.7.23 Farewell of 2023 batch-02.webp', '15.7.23 Farewell of 2023 batch-03.webp', '15.7.23 Farewell of 2023 batch-04.webp', '15.7.23 Farewell of 2023 batch-05.webp', '15.7.23 Farewell of 2023 batch-06.webp'],
],
[
'title' => 'Alumni Meet 2023',
'folder' => '16.9.23 Alumni Meet',
'images' => ['16.9.23 Alumni Meet-01.webp', '16.9.23 Alumni Meet-02.webp', '16.9.23 Alumni Meet-03.webp', '16.9.23 Alumni Meet-04.webp', '16.9.23 Alumni Meet-05.webp'],
],
[
'title' => 'Teachers Day Celebration 2023',
'folder' => '5.9.23 Teachers Day Celebration',
'images' => ['5.9.23 Teachers Day Celebration-01.webp', '5.9.23 Teachers Day Celebration-02.webp', '5.9.23 Teachers Day Celebration-03.webp', '5.9.23 Teachers Day Celebration-04.webp', '5.9.23 Teachers Day Celebration-05.webp', '5.9.23 Teachers Day Celebration-06.webp', '5.9.23 Teachers Day Celebration-07.webp'],
],
[
'title' => 'Cyber Security Seminar 2023',
'folder' => '18-21.7.23 Cyber Security Seminar',
'images' => ['18-21.7.23 Cyber Security Seminar-01.webp', '18-21.7.23 Cyber Security Seminar-02.webp', '18-21.7.23 Cyber Security Seminar-03.webp', '18-21.7.23 Cyber Security Seminar-04.webp', '18-21.7.23 Cyber Security Seminar-05.webp'],
],
];
@endphp
@foreach ($imageSets as $imageSet)
— {{ $imageSet['title'] }}
@foreach ($imageSet['images'] as $image)
@php $imageUrl = asset("/uploads/Events/Bachelor of Technology/Computer Science & Engineering/{$imageSet['folder']}/" . $image); @endphp
@endforeach
@endforeach
@endsection