-- phpMyAdmin SQL Dump -- version 5.2.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Feb 20, 2026 at 05:15 AM -- Server version: 10.4.32-MariaDB -- PHP Version: 8.2.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `noor_lms` -- -- -------------------------------------------------------- -- -- Table structure for table `absence_reason_codes` -- CREATE TABLE `absence_reason_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `code` varchar(10) NOT NULL, `reason_en` varchar(255) NOT NULL, `reason_ar` varchar(255) NOT NULL, `requires_document` tinyint(1) NOT NULL DEFAULT 0, `is_medical` tinyint(1) NOT NULL DEFAULT 0, `auto_approve` tinyint(1) NOT NULL DEFAULT 0, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `academic_years` -- CREATE TABLE `academic_years` ( `id` bigint(20) UNSIGNED NOT NULL, `year_label_en` varchar(50) NOT NULL, `year_label_ar` varchar(50) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `is_current` tinyint(1) NOT NULL DEFAULT 0, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `academic_years` -- INSERT INTO `academic_years` (`id`, `year_label_en`, `year_label_ar`, `start_date`, `end_date`, `is_current`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, '2024-2025', '2024-2025', '2024-09-01', '2025-06-30', 0, NULL, '2026-02-11 20:38:19', '2026-02-11 20:38:19'), (2, '2025-2026', '2025-2026', '2025-09-01', '2026-06-30', 1, NULL, '2026-02-11 20:38:19', '2026-02-11 20:38:19'), (3, '2026-2027', '2026-2027', '2026-09-01', '2027-06-30', 0, NULL, '2026-02-11 20:38:19', '2026-02-11 20:38:19'); -- -------------------------------------------------------- -- -- Table structure for table `accessibility_settings` -- CREATE TABLE `accessibility_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `high_contrast_mode` tinyint(1) NOT NULL DEFAULT 0, `large_text_mode` tinyint(1) NOT NULL DEFAULT 0, `dyslexic_font` tinyint(1) NOT NULL DEFAULT 0, `reduce_motion` tinyint(1) NOT NULL DEFAULT 0, `screen_reader_optimized` tinyint(1) NOT NULL DEFAULT 0, `preferred_color_scheme` enum('light','dark','system') NOT NULL DEFAULT 'system', `accent_color` varchar(20) NOT NULL DEFAULT 'blue', `bg_color` varchar(20) NOT NULL DEFAULT '#ffffff', `font_family` varchar(50) NOT NULL DEFAULT 'inter', `font_size_multiplier` decimal(3,2) NOT NULL DEFAULT 1.00, `keyboard_navigation_only` tinyint(1) NOT NULL DEFAULT 0, `show_image_descriptions` tinyint(1) NOT NULL DEFAULT 1, `underline_links` tinyint(1) NOT NULL DEFAULT 1, `increased_line_spacing` tinyint(1) NOT NULL DEFAULT 0, `focus_visible` tinyint(1) NOT NULL DEFAULT 1, `text_to_speech_enabled` tinyint(1) NOT NULL DEFAULT 0, `reading_mask_enabled` tinyint(1) NOT NULL DEFAULT 0, `line_height_multiplier` decimal(3,2) NOT NULL DEFAULT 1.50, `letter_spacing_multiplier` decimal(3,2) NOT NULL DEFAULT 1.00, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `stop_animations` tinyint(1) NOT NULL DEFAULT 0, `reading_focus` tinyint(1) NOT NULL DEFAULT 0, `cursor_size` tinyint(1) NOT NULL DEFAULT 0, `saturation_increase` tinyint(1) NOT NULL DEFAULT 0, `keyboard_navigation` tinyint(1) NOT NULL DEFAULT 0, `focus_indicators` tinyint(1) NOT NULL DEFAULT 0, `grayscale_mode` tinyint(1) NOT NULL DEFAULT 0, `invert_colors` tinyint(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `accessibility_settings` -- INSERT INTO `accessibility_settings` (`id`, `user_id`, `high_contrast_mode`, `large_text_mode`, `dyslexic_font`, `reduce_motion`, `screen_reader_optimized`, `preferred_color_scheme`, `accent_color`, `bg_color`, `font_family`, `font_size_multiplier`, `keyboard_navigation_only`, `show_image_descriptions`, `underline_links`, `increased_line_spacing`, `focus_visible`, `text_to_speech_enabled`, `reading_mask_enabled`, `line_height_multiplier`, `letter_spacing_multiplier`, `deleted_at`, `created_at`, `updated_at`, `stop_animations`, `reading_focus`, `cursor_size`, `saturation_increase`, `keyboard_navigation`, `focus_indicators`, `grayscale_mode`, `invert_colors`) VALUES (1, 1, 0, 0, 0, 0, 0, 'dark', 'emerald', '#ffffff', 'inter', 1.00, 0, 1, 1, 0, 1, 0, 0, 1.50, 1.00, NULL, '2026-02-11 21:39:31', '2026-02-16 14:39:29', 0, 0, 0, 0, 0, 0, 0, 0), (4, 2, 0, 1, 0, 0, 0, 'dark', 'yellow', '#ffffff', 'inter', 1.00, 0, 1, 0, 1, 1, 0, 0, 1.50, 1.00, NULL, '2026-02-14 00:24:24', '2026-02-14 22:34:48', 0, 0, 0, 0, 0, 0, 0, 0), (5, 10, 0, 0, 0, 0, 0, 'dark', 'yellow', '#ffffff', 'inter', 1.00, 0, 1, 1, 0, 1, 0, 0, 1.50, 1.00, NULL, '2026-02-14 12:49:59', '2026-02-14 13:48:04', 0, 0, 0, 0, 0, 0, 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `activity_completions` -- CREATE TABLE `activity_completions` ( `id` bigint(20) UNSIGNED NOT NULL, `enrollment_id` bigint(20) UNSIGNED NOT NULL, `activity_type` varchar(255) NOT NULL, `activity_id` bigint(20) UNSIGNED NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `completed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `activity_logs` -- CREATE TABLE `activity_logs` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `action` varchar(255) NOT NULL, `category` varchar(100) DEFAULT NULL, `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `details` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`details`)), `ip_address` varchar(45) DEFAULT NULL, `user_agent` varchar(255) DEFAULT NULL, `occurred_at` timestamp NOT NULL DEFAULT current_timestamp(), `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `activity_logs` -- INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"LAEKMOd7np45H7hAWaO2p7ZVuUQLYoWdFjS7v9ax\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:10:36', NULL, NULL, NULL), (2, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"LAEKMOd7np45H7hAWaO2p7ZVuUQLYoWdFjS7v9ax\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:10:37', NULL, NULL, NULL), (3, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"LAEKMOd7np45H7hAWaO2p7ZVuUQLYoWdFjS7v9ax\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:10:43', NULL, NULL, NULL), (4, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"LAEKMOd7np45H7hAWaO2p7ZVuUQLYoWdFjS7v9ax\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:12:10', NULL, NULL, NULL), (5, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"LAEKMOd7np45H7hAWaO2p7ZVuUQLYoWdFjS7v9ax\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:12:43', NULL, NULL, NULL), (6, 1, 'admin.faculties.index', 'admin', 'Visited: admin/faculties', 'زار: admin/faculties', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.faculties.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@index\",\"session_id\":\"LAEKMOd7np45H7hAWaO2p7ZVuUQLYoWdFjS7v9ax\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:12:46', NULL, NULL, NULL), (7, 1, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"LAEKMOd7np45H7hAWaO2p7ZVuUQLYoWdFjS7v9ax\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:16:51', NULL, NULL, NULL), (8, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:30:55', NULL, NULL, NULL), (9, 1, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:30:59', NULL, NULL, NULL), (10, 1, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:31:22', NULL, NULL, NULL), (11, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:31:23', NULL, NULL, NULL), (12, 1, 'home', 'navigation', 'Visited: /', 'زار: /', '{\"url\":\"http:\\/\\/127.0.0.1:8000\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"home\",\"controller\":\"Closure\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:31:30', NULL, NULL, NULL), (13, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:31:33', NULL, NULL, NULL), (14, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:33:26', NULL, NULL, NULL), (15, 1, 'admin.users.show', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:33:45', NULL, NULL, NULL), (16, 1, 'admin.faculties.index', 'admin', 'Visited: admin/faculties', 'زار: admin/faculties', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.faculties.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@index\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:33:49', NULL, NULL, NULL), (17, 1, 'admin.majors.index', 'admin', 'Visited: admin/majors', 'زار: admin/majors', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"admin.majors.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@index\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:33:53', NULL, NULL, NULL), (18, 1, 'admin.majors.show', 'admin', 'Visited: admin/majors/1', 'زار: admin/majors/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.majors.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@show\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:33:58', NULL, NULL, NULL), (19, 1, 'admin.majors.index', 'admin', 'Visited: admin/majors', 'زار: admin/majors', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"admin.majors.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@index\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:39:15', NULL, NULL, NULL), (20, 1, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:39:31', NULL, NULL, NULL), (21, 1, 'admin.majors.index', 'admin', 'Visited: admin/majors', 'زار: admin/majors', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.majors.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@index\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:39:33', NULL, NULL, NULL), (22, 1, 'admin.majors.index', 'admin', 'Visited: admin/majors', 'زار: admin/majors', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.majors.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@index\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 21:53:53', NULL, NULL, NULL), (23, 1, 'admin.majors.index', 'admin', 'Visited: admin/majors', 'زار: admin/majors', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.majors.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@index\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 22:15:10', NULL, NULL, NULL), (24, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 22:15:15', NULL, NULL, NULL), (25, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 22:15:23', NULL, NULL, NULL), (26, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 22:15:28', NULL, NULL, NULL), (27, 1, 'admin.users.show', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 22:15:31', NULL, NULL, NULL), (28, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 22:15:35', NULL, NULL, NULL), (29, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-11 22:22:55', NULL, NULL, NULL), (30, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 01:29:54', NULL, NULL, NULL), (31, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 01:53:25', NULL, NULL, NULL), (32, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 01:54:32', NULL, NULL, NULL), (33, 1, 'language.switch', 'navigation', 'Visited: language/ar', 'زار: language/ar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/language\\/ar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"language.switch\",\"controller\":\"Closure\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 01:54:38', NULL, NULL, NULL), (34, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 01:54:38', NULL, NULL, NULL), (35, 1, 'language.switch', 'navigation', 'Visited: language/en', 'زار: language/en', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/language\\/en\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"language.switch\",\"controller\":\"Closure\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 01:54:41', NULL, NULL, NULL), (36, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"WOIQEzAtfChVL7jfPQK2PPVWWFZWcW57G26EwyJ7\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 01:54:41', NULL, NULL, NULL), (37, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:03:03', NULL, NULL, NULL), (38, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:03:04', NULL, NULL, NULL), (39, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:03:06', NULL, NULL, NULL), (40, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:04:30', NULL, NULL, NULL), (41, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:06:43', NULL, NULL, NULL), (42, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:10:45', NULL, NULL, NULL), (43, 1, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:11:01', NULL, NULL, NULL), (44, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:13:05', NULL, NULL, NULL), (45, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:13:09', NULL, NULL, NULL), (46, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:13:25', NULL, NULL, NULL), (47, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:16:14', NULL, NULL, NULL), (48, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:16:20', NULL, NULL, NULL), (49, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:23:22', NULL, NULL, NULL), (50, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:24:48', NULL, NULL, NULL), (51, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:25:39', NULL, NULL, NULL), (52, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:32:25', NULL, NULL, NULL), (53, 1, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:32:43', NULL, NULL, NULL), (54, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:34:20', NULL, NULL, NULL), (55, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:34:24', NULL, NULL, NULL), (56, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:35:07', NULL, NULL, NULL), (57, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:37:16', NULL, NULL, NULL), (58, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:37:34', NULL, NULL, NULL), (59, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:38:06', NULL, NULL, NULL), (60, 1, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:39:35', NULL, NULL, NULL), (61, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:40:40', NULL, NULL, NULL), (62, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:43:21', NULL, NULL, NULL), (63, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:44:47', NULL, NULL, NULL), (64, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:45:20', NULL, NULL, NULL), (65, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:45:27', NULL, NULL, NULL), (66, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:45:44', NULL, NULL, NULL), (67, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:49:07', NULL, NULL, NULL), (68, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:53:52', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (69, 1, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 13:54:11', NULL, NULL, NULL), (70, 1, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:21:31', NULL, NULL, NULL), (71, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:21:40', NULL, NULL, NULL), (72, 1, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:21:47', NULL, NULL, NULL), (73, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:25:48', NULL, NULL, NULL), (74, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:26:01', NULL, NULL, NULL), (75, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:26:34', NULL, NULL, NULL), (76, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:26:44', NULL, NULL, NULL), (77, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:29:25', NULL, NULL, NULL), (78, 1, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:30:00', NULL, NULL, NULL), (79, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:30:02', NULL, NULL, NULL), (80, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:35:39', NULL, NULL, NULL), (81, 1, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:35:54', NULL, NULL, NULL), (82, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:35:56', NULL, NULL, NULL), (83, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:36:05', NULL, NULL, NULL), (84, 1, 'language.switch', 'navigation', 'Visited: language/ar', 'زار: language/ar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/language\\/ar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"language.switch\",\"controller\":\"Closure\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:36:18', NULL, NULL, NULL), (85, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:36:19', NULL, NULL, NULL), (86, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:42:05', NULL, NULL, NULL), (87, 1, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:42:18', NULL, NULL, NULL), (88, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:42:20', NULL, NULL, NULL), (89, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:42:29', NULL, NULL, NULL), (90, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:42:33', NULL, NULL, NULL), (91, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:42:38', NULL, NULL, NULL), (92, 1, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:43:04', NULL, NULL, NULL), (93, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:43:06', NULL, NULL, NULL), (94, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:47:01', NULL, NULL, NULL), (95, 1, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:47:18', NULL, NULL, NULL), (96, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:47:20', NULL, NULL, NULL), (97, 1, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:47:40', NULL, NULL, NULL), (98, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 14:47:42', NULL, NULL, NULL), (99, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?role=student\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"AZ9z5Uo6VSYbAjal62XgP8l1vtfBjWuNdZR9SicB\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:00:11', NULL, NULL, NULL), (100, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:00:52', NULL, NULL, NULL), (101, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:00:53', NULL, NULL, NULL), (102, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:00:55', NULL, NULL, NULL), (103, 1, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:01:16', NULL, NULL, NULL), (104, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:01:18', NULL, NULL, NULL), (105, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:01:28', NULL, NULL, NULL), (106, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:01:44', NULL, NULL, NULL), (107, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:01:53', NULL, NULL, NULL), (108, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:03:53', NULL, NULL, NULL), (109, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:10:40', NULL, NULL, NULL), (110, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:14:14', NULL, NULL, NULL), (111, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:26:13', NULL, NULL, NULL), (112, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:27:38', NULL, NULL, NULL), (113, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:35:27', NULL, NULL, NULL), (114, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:39:32', NULL, NULL, NULL), (115, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:39:35', NULL, NULL, NULL), (116, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:39:40', NULL, NULL, NULL), (117, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:41:48', NULL, NULL, NULL), (118, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:41:53', NULL, NULL, NULL), (119, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:41:56', NULL, NULL, NULL), (120, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:42:32', NULL, NULL, NULL), (121, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 15:54:05', NULL, NULL, NULL), (122, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:05:13', NULL, NULL, NULL), (123, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:15:56', NULL, NULL, NULL), (124, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:21:11', NULL, NULL, NULL), (125, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:25:04', NULL, NULL, NULL), (126, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:29:01', NULL, NULL, NULL), (127, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:30:52', NULL, NULL, NULL), (128, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:33:11', NULL, NULL, NULL), (129, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:35:25', NULL, NULL, NULL), (130, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:37:23', NULL, NULL, NULL), (131, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:37:47', NULL, NULL, NULL), (132, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:37:54', NULL, NULL, NULL), (133, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:38:49', NULL, NULL, NULL), (134, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:40:14', NULL, NULL, NULL), (135, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:40:23', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (136, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:43:43', NULL, NULL, NULL), (137, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:44:47', NULL, NULL, NULL), (138, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:45:14', NULL, NULL, NULL), (139, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:47:31', NULL, NULL, NULL), (140, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:47:45', NULL, NULL, NULL), (141, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:50:13', NULL, NULL, NULL), (142, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:55:03', NULL, NULL, NULL), (143, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:58:22', NULL, NULL, NULL), (144, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 16:59:58', NULL, NULL, NULL), (145, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:00:04', NULL, NULL, NULL), (146, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:00:51', NULL, NULL, NULL), (147, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:01:24', NULL, NULL, NULL), (148, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:01:44', NULL, NULL, NULL), (149, 1, 'admin.faculties.index', 'admin', 'Visited: admin/faculties', 'زار: admin/faculties', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.faculties.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:01:50', NULL, NULL, NULL), (150, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:02:06', NULL, NULL, NULL), (151, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:02:42', NULL, NULL, NULL), (152, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:02:46', NULL, NULL, NULL), (153, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:02:49', NULL, NULL, NULL), (154, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:02:54', NULL, NULL, NULL), (155, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:03:02', NULL, NULL, NULL), (156, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:03:05', NULL, NULL, NULL), (157, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:03:51', NULL, NULL, NULL), (158, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:04:22', NULL, NULL, NULL), (159, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:04:28', NULL, NULL, NULL), (160, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:06:41', NULL, NULL, NULL), (161, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:07:21', NULL, NULL, NULL), (162, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:07:29', NULL, NULL, NULL), (163, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:07:47', NULL, NULL, NULL), (164, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:08:44', NULL, NULL, NULL), (165, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:08:49', NULL, NULL, NULL), (166, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:09:35', NULL, NULL, NULL), (167, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:09:38', NULL, NULL, NULL), (168, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"gXo3sMs6vZ2vnz5CNcxEEGkg9D2W9PWfys8YhHrO\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:09:51', NULL, NULL, NULL), (169, 2, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:10:37', NULL, NULL, NULL), (170, 2, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:10:37', NULL, NULL, NULL), (171, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:10:39', NULL, NULL, NULL), (172, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:11:22', NULL, NULL, NULL), (173, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:11:25', NULL, NULL, NULL), (174, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:12:00', NULL, NULL, NULL), (175, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:12:53', NULL, NULL, NULL), (176, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:12:57', NULL, NULL, NULL), (177, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:13:16', NULL, NULL, NULL), (178, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:13:23', NULL, NULL, NULL), (179, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:13:41', NULL, NULL, NULL), (180, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:13:47', NULL, NULL, NULL), (181, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:14:02', NULL, NULL, NULL), (182, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:14:42', NULL, NULL, NULL), (183, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:14:44', NULL, NULL, NULL), (184, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:15:00', NULL, NULL, NULL), (185, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:15:29', NULL, NULL, NULL), (186, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:17:15', NULL, NULL, NULL), (187, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:17:15', NULL, NULL, NULL), (188, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:18:42', NULL, NULL, NULL), (189, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:34:58', NULL, NULL, NULL), (190, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:35:24', NULL, NULL, NULL), (191, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:37:58', NULL, NULL, NULL), (192, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:38:21', NULL, NULL, NULL), (193, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:38:51', NULL, NULL, NULL), (194, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:43:23', NULL, NULL, NULL), (195, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:43:54', NULL, NULL, NULL), (196, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:43:58', NULL, NULL, NULL), (197, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:52:51', NULL, NULL, NULL), (198, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:53:00', NULL, NULL, NULL), (199, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:57:15', NULL, NULL, NULL), (200, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:58:33', NULL, NULL, NULL), (201, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:58:35', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (202, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:59:17', NULL, NULL, NULL), (203, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 17:59:30', NULL, NULL, NULL), (204, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:00:51', NULL, NULL, NULL), (205, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"97OOLUZc6cP5s4vJH3DRkZpCo9jnxUQ3okia3JrA\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:02:06', NULL, NULL, NULL), (206, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:02:40', NULL, NULL, NULL), (207, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:02:41', NULL, NULL, NULL), (208, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:02:41', NULL, NULL, NULL), (209, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:03:01', NULL, NULL, NULL), (210, 1, 'notifications.index', 'profile', 'Visited: notifications', 'زار: notifications', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/notifications\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"notifications.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\NotificationController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:03:17', NULL, NULL, NULL), (211, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:03:22', NULL, NULL, NULL), (212, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:04:00', NULL, NULL, NULL), (213, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:09:16', NULL, NULL, NULL), (214, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:13:39', NULL, NULL, NULL), (215, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:14:44', NULL, NULL, NULL), (216, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:15:32', NULL, NULL, NULL), (217, 1, 'language.switch', 'navigation', 'Visited: language/ar', 'زار: language/ar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/language\\/ar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"language.switch\",\"controller\":\"Closure\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:16:12', NULL, NULL, NULL), (218, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:16:13', NULL, NULL, NULL), (219, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:17:51', NULL, NULL, NULL), (220, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:17:55', NULL, NULL, NULL), (221, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:17:55', NULL, NULL, NULL), (222, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:18:27', NULL, NULL, NULL), (223, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:18:35', NULL, NULL, NULL), (224, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:21:20', NULL, NULL, NULL), (225, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=amber\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:22:22', NULL, NULL, NULL), (226, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=purple\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:22:23', NULL, NULL, NULL), (227, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=violet\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:22:28', NULL, NULL, NULL), (228, 1, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:22:34', NULL, NULL, NULL), (229, 1, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:22:40', NULL, NULL, NULL), (230, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:23:01', NULL, NULL, NULL), (231, 1, 'language.switch', 'navigation', 'Visited: language/ar', 'زار: language/ar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/language\\/ar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"language.switch\",\"controller\":\"Closure\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:23:05', NULL, NULL, NULL), (232, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:23:05', NULL, NULL, NULL), (233, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:23:10', NULL, NULL, NULL), (234, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:26:18', NULL, NULL, NULL), (235, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=green\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:26:22', NULL, NULL, NULL), (236, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:26:25', NULL, NULL, NULL), (237, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:26:34', NULL, NULL, NULL), (238, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:31:18', NULL, NULL, NULL), (239, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=cyan\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:31:22', NULL, NULL, NULL), (240, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=violet\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:31:26', NULL, NULL, NULL), (241, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=rose\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:31:34', NULL, NULL, NULL), (242, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:31:45', NULL, NULL, NULL), (243, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:31:48', NULL, NULL, NULL), (244, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=purple\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:31:52', NULL, NULL, NULL), (245, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:33:16', NULL, NULL, NULL), (246, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=purple\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:33:21', NULL, NULL, NULL), (247, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:33:26', NULL, NULL, NULL), (248, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:33:30', NULL, NULL, NULL), (249, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:33:33', NULL, NULL, NULL), (250, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=orange\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:33:37', NULL, NULL, NULL), (251, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:33:44', NULL, NULL, NULL), (252, 1, 'admin.faculties.index', 'admin', 'Visited: admin/faculties', 'زار: admin/faculties', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.faculties.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:33:48', NULL, NULL, NULL), (253, 1, 'admin.faculties.index', 'admin', 'Visited: admin/faculties', 'زار: admin/faculties', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.faculties.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:02', NULL, NULL, NULL), (254, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=amber\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:07', NULL, NULL, NULL), (255, 1, 'admin.faculties.index', 'admin', 'Visited: admin/faculties', 'زار: admin/faculties', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.faculties.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:11', NULL, NULL, NULL), (256, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:18', NULL, NULL, NULL), (257, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=yellow\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:23', NULL, NULL, NULL), (258, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:33', NULL, NULL, NULL), (259, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:38', NULL, NULL, NULL), (260, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:40', NULL, NULL, NULL), (261, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:44', NULL, NULL, NULL), (262, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=yellow\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:47', NULL, NULL, NULL), (263, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:36:49', NULL, NULL, NULL), (264, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:40:33', NULL, NULL, NULL), (265, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=amber\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:40:39', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (266, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:40:41', NULL, NULL, NULL), (267, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:40:46', NULL, NULL, NULL), (268, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:40:51', NULL, NULL, NULL), (269, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:40:54', NULL, NULL, NULL), (270, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=purple\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:40:59', NULL, NULL, NULL), (271, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:41:02', NULL, NULL, NULL), (272, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:42:59', NULL, NULL, NULL), (273, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:44:38', NULL, NULL, NULL), (274, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=orange\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:44:46', NULL, NULL, NULL), (275, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:44:49', NULL, NULL, NULL), (276, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:44:54', NULL, NULL, NULL), (277, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=violet\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:44:58', NULL, NULL, NULL), (278, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:45:01', NULL, NULL, NULL), (279, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:45:05', NULL, NULL, NULL), (280, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:45:07', NULL, NULL, NULL), (281, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:45:13', NULL, NULL, NULL), (282, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:45:14', NULL, NULL, NULL), (283, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:45:18', NULL, NULL, NULL), (284, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=red\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:45:21', NULL, NULL, NULL), (285, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:45:23', NULL, NULL, NULL), (286, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:52:08', NULL, NULL, NULL), (287, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=cyan\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:52:16', NULL, NULL, NULL), (288, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:52:18', NULL, NULL, NULL), (289, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=fuchsia\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:52:40', NULL, NULL, NULL), (290, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=rose\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:52:46', NULL, NULL, NULL), (291, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=green\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:52:49', NULL, NULL, NULL), (292, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:52:54', NULL, NULL, NULL), (293, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:53:01', NULL, NULL, NULL), (294, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:53:08', NULL, NULL, NULL), (295, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:56:26', NULL, NULL, NULL), (296, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:56:59', NULL, NULL, NULL), (297, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:03', NULL, NULL, NULL), (298, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23ffffff\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:06', NULL, NULL, NULL), (299, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:07', NULL, NULL, NULL), (300, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=orange\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:21', NULL, NULL, NULL), (301, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=fuchsia\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:25', NULL, NULL, NULL), (302, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=red\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:34', NULL, NULL, NULL), (303, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=yellow\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:40', NULL, NULL, NULL), (304, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:46', NULL, NULL, NULL), (305, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=cyan\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:51', NULL, NULL, NULL), (306, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:57:55', NULL, NULL, NULL), (307, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%230d1117\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:58:00', NULL, NULL, NULL), (308, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23f8f9fa\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:58:07', NULL, NULL, NULL), (309, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:58:31', NULL, NULL, NULL), (310, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:58:39', NULL, NULL, NULL), (311, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=indigo\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 18:58:42', NULL, NULL, NULL), (312, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:02:53', NULL, NULL, NULL), (313, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:02:56', NULL, NULL, NULL), (314, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:06:29', NULL, NULL, NULL), (315, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:13:55', NULL, NULL, NULL), (316, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:15:09', NULL, NULL, NULL), (317, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:15:14', NULL, NULL, NULL), (318, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:15:15', NULL, NULL, NULL), (319, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:17:03', NULL, NULL, NULL), (320, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:20:26', NULL, NULL, NULL), (321, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:20:29', NULL, NULL, NULL), (322, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:20:30', NULL, NULL, NULL), (323, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:23:11', NULL, NULL, NULL), (324, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:23:29', NULL, NULL, NULL), (325, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:23:32', NULL, NULL, NULL), (326, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:27:48', NULL, NULL, NULL), (327, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=p22-shibumi\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:27:58', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (328, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=transcity\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:01', NULL, NULL, NULL), (329, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=priestacy\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:04', NULL, NULL, NULL), (330, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=raleway\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:07', NULL, NULL, NULL), (331, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=ubuntu\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:11', NULL, NULL, NULL), (332, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=lato\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:14', NULL, NULL, NULL), (333, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=dm-sans\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:18', NULL, NULL, NULL), (334, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=open-sans\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:21', NULL, NULL, NULL), (335, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:24', NULL, NULL, NULL), (336, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:31', NULL, NULL, NULL), (337, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:34', NULL, NULL, NULL), (338, 1, 'admin.reports.index', 'admin', 'Visited: admin/reports', 'زار: admin/reports', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.reports.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:37', NULL, NULL, NULL), (339, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:40', NULL, NULL, NULL), (340, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:28:47', NULL, NULL, NULL), (341, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:30:18', NULL, NULL, NULL), (342, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=p22-shibumi\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:30:25', NULL, NULL, NULL), (343, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=teal\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:30:31', NULL, NULL, NULL), (344, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:30:35', NULL, NULL, NULL), (345, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:30:44', NULL, NULL, NULL), (346, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:32:44', NULL, NULL, NULL), (347, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:32:48', NULL, NULL, NULL), (348, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:33:05', NULL, NULL, NULL), (349, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:34:45', NULL, NULL, NULL), (350, 1, 'admin.users.show', 'admin', 'Visited: admin/users/22', 'زار: admin/users/22', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:34:51', NULL, NULL, NULL), (351, 1, 'admin.users.show', 'admin', 'Visited: admin/users/22', 'زار: admin/users/22', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:34:53', NULL, NULL, NULL), (352, 1, 'admin.users.edit', 'admin', 'Visited: admin/users/22/edit', 'زار: admin/users/22/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@edit\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:34:57', NULL, NULL, NULL), (353, 1, 'admin.users.show', 'admin', 'Visited: admin/users/22', 'زار: admin/users/22', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:35:13', NULL, NULL, NULL), (354, 1, 'admin.users.show', 'admin', 'Visited: admin/users/22', 'زار: admin/users/22', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:35:16', NULL, NULL, NULL), (355, 1, 'admin.users.edit', 'admin', 'Visited: admin/users/22/edit', 'زار: admin/users/22/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@edit\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:35:20', NULL, NULL, NULL), (356, 1, 'admin.users.edit', 'admin', 'Visited: admin/users/22/edit', 'زار: admin/users/22/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@edit\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:36:40', NULL, NULL, NULL), (357, 1, 'admin.users.edit', 'admin', 'Visited: admin/users/22/edit', 'زار: admin/users/22/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@edit\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:36:47', NULL, NULL, NULL), (358, 1, 'admin.users.edit', 'admin', 'Visited: admin/users/22/edit', 'زار: admin/users/22/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@edit\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:36:52', NULL, NULL, NULL), (359, 1, 'admin.users.edit', 'admin', 'Visited: admin/users/22/edit', 'زار: admin/users/22/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@edit\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:37:32', NULL, NULL, NULL), (360, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\\/edit\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:37:48', NULL, NULL, NULL), (361, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=orange\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:37:53', NULL, NULL, NULL), (362, 1, 'admin.users.show', 'admin', 'Visited: admin/users/22', 'زار: admin/users/22', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:37:57', NULL, NULL, NULL), (363, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=orange\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:38:00', NULL, NULL, NULL), (364, 1, 'admin.users.show', 'admin', 'Visited: admin/users/22', 'زار: admin/users/22', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:38:04', NULL, NULL, NULL), (365, 1, 'admin.users.toggle-status', 'admin', 'Visited: admin/users/22/toggle-status', 'زار: admin/users/22/toggle-status', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\\/toggle-status\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.toggle-status\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@toggleStatus\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:39:21', NULL, NULL, NULL), (366, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:39:22', NULL, NULL, NULL), (367, 1, 'admin.users.toggle-status', 'admin', 'Visited: admin/users/22/toggle-status', 'زار: admin/users/22/toggle-status', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/22\\/toggle-status\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.toggle-status\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@toggleStatus\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:39:31', NULL, NULL, NULL), (368, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:39:32', NULL, NULL, NULL), (369, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:41:23', NULL, NULL, NULL), (370, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:41:33', NULL, NULL, NULL), (371, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:43:12', NULL, NULL, NULL), (372, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:43:47', NULL, NULL, NULL), (373, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:44:14', NULL, NULL, NULL), (374, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:44:28', NULL, NULL, NULL), (375, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=2\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:45:08', NULL, NULL, NULL), (376, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:45:08', NULL, NULL, NULL), (377, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:45:20', NULL, NULL, NULL), (378, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:45:22', NULL, NULL, NULL), (379, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:45:22', NULL, NULL, NULL), (380, 1, 'admin.faculties.index', 'admin', 'Visited: admin/faculties', 'زار: admin/faculties', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users?page=2\",\"route_name\":\"admin.faculties.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:45:25', NULL, NULL, NULL), (381, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:45:28', NULL, NULL, NULL), (382, 1, 'admin.departments.index', 'admin', 'Visited: admin/departments', 'زار: admin/departments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/departments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/144.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.departments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DepartmentController@index\",\"session_id\":\"y5qOafuneefXMIfSzKdgmQ4KMo5KbdHibr3cHTK8\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36', '2026-02-12 19:45:31', NULL, NULL, NULL), (383, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:47:14', NULL, NULL, NULL), (384, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:47:14', NULL, NULL, NULL), (385, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:47:14', NULL, NULL, NULL), (386, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=emerald\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:48:32', NULL, NULL, NULL), (387, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=green\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:48:35', NULL, NULL, NULL), (388, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=stone\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:48:39', NULL, NULL, NULL), (389, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=amber\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:51:38', NULL, NULL, NULL), (390, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:51:42', NULL, NULL, NULL), (391, 1, 'admin.users.show', 'admin', 'Visited: admin/users/21', 'زار: admin/users/21', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/21\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:51:45', NULL, NULL, NULL), (392, 1, 'admin.users.show', 'admin', 'Visited: admin/users/21', 'زار: admin/users/21', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/21\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:51:47', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (393, 1, 'admin.users.edit', 'admin', 'Visited: admin/users/21/edit', 'زار: admin/users/21/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/21\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@edit\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:51:49', NULL, NULL, NULL), (394, 1, 'admin.faculties.index', 'admin', 'Visited: admin/faculties', 'زار: admin/faculties', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.faculties.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:51:53', NULL, NULL, NULL), (395, 1, 'admin.faculties.show', 'admin', 'Visited: admin/faculties/2', 'زار: admin/faculties/2', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\\/2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"admin.faculties.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@show\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:51:56', NULL, NULL, NULL), (396, 1, 'admin.faculties.edit', 'admin', 'Visited: admin/faculties/2/edit', 'زار: admin/faculties/2/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\\/2\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"admin.faculties.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@edit\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:51:59', NULL, NULL, NULL), (397, 1, 'admin.faculties.destroy', 'admin', 'Visited: admin/faculties/2', 'زار: admin/faculties/2', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\\/2\",\"method\":\"DELETE\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"admin.faculties.destroy\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@destroy\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:52:01', NULL, NULL, NULL), (398, 1, 'admin.faculties.index', 'admin', 'Visited: admin/faculties', 'زار: admin/faculties', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"admin.faculties.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FacultyController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:52:02', NULL, NULL, NULL), (399, 1, 'admin.departments.index', 'admin', 'Visited: admin/departments', 'زار: admin/departments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/departments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/faculties\",\"route_name\":\"admin.departments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DepartmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:52:07', NULL, NULL, NULL), (400, 1, 'admin.majors.index', 'admin', 'Visited: admin/majors', 'زار: admin/majors', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/departments\",\"route_name\":\"admin.majors.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:52:16', NULL, NULL, NULL), (401, 1, 'admin.majors.index', 'admin', 'Visited: admin/majors', 'زار: admin/majors', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/departments\",\"route_name\":\"admin.majors.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:53:37', NULL, NULL, NULL), (402, 1, 'admin.majors.show', 'admin', 'Visited: admin/majors/1', 'زار: admin/majors/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.majors.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@show\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:53:39', NULL, NULL, NULL), (403, 1, 'admin.majors.edit', 'admin', 'Visited: admin/majors/1/edit', 'زار: admin/majors/1/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\\/1\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.majors.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MajorController@edit\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:53:41', NULL, NULL, NULL), (404, 1, 'admin.courses.index', 'admin', 'Visited: admin/courses', 'زار: admin/courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\CourseController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:53:48', NULL, NULL, NULL), (405, 1, 'admin.courses.index', 'admin', 'Visited: admin/courses', 'زار: admin/courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\CourseController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:56:19', NULL, NULL, NULL), (406, 1, 'admin.courses.index', 'admin', 'Visited: admin/courses', 'زار: admin/courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/majors\",\"route_name\":\"admin.courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\CourseController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:58:32', NULL, NULL, NULL), (407, 1, 'admin.courses.show', 'admin', 'Visited: admin/courses/3', 'زار: admin/courses/3', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/courses\\/3\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/courses\",\"route_name\":\"admin.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\CourseController@show\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:58:38', NULL, NULL, NULL), (408, 1, 'admin.academic-years.index', 'admin', 'Visited: admin/academic-years', 'زار: admin/academic-years', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/academic-years\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/courses\",\"route_name\":\"admin.academic-years.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AcademicYearController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:58:45', NULL, NULL, NULL), (409, 1, 'admin.semesters.index', 'admin', 'Visited: admin/semesters', 'زار: admin/semesters', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/semesters\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/academic-years\",\"route_name\":\"admin.semesters.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SemesterController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:58:50', NULL, NULL, NULL), (410, 1, 'admin.course-offerings.index', 'admin', 'Visited: admin/course-offerings', 'زار: admin/course-offerings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/course-offerings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/semesters\",\"route_name\":\"admin.course-offerings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\CourseOfferingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:58:54', NULL, NULL, NULL), (411, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/course-offerings\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 14:58:59', NULL, NULL, NULL), (412, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/course-offerings\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:00:38', NULL, NULL, NULL), (413, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/course-offerings\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:00:45', NULL, NULL, NULL), (414, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/course-offerings\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:02:38', NULL, NULL, NULL), (415, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/course-offerings\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:03:45', NULL, NULL, NULL), (416, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:03:55', NULL, NULL, NULL), (417, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:05:26', NULL, NULL, NULL), (418, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:06:03', NULL, NULL, NULL), (419, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:06:27', NULL, NULL, NULL), (420, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:06:31', NULL, NULL, NULL), (421, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:07:11', NULL, NULL, NULL), (422, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:07:34', NULL, NULL, NULL), (423, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:08:33', NULL, NULL, NULL), (424, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:08:44', NULL, NULL, NULL), (425, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:10:32', NULL, NULL, NULL), (426, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:11:45', NULL, NULL, NULL), (427, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:12:57', NULL, NULL, NULL), (428, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:13:03', NULL, NULL, NULL), (429, 1, 'admin.reports.index', 'admin', 'Visited: admin/reports', 'زار: admin/reports', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.reports.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:13:15', NULL, NULL, NULL), (430, 1, 'admin.reports.index', 'admin', 'Visited: admin/reports', 'زار: admin/reports', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.reports.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:15:17', NULL, NULL, NULL), (431, 1, 'admin.reports.gpa', 'admin', 'Visited: admin/reports/gpa', 'زار: admin/reports/gpa', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/gpa\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"route_name\":\"admin.reports.gpa\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@gpa\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:15:21', NULL, NULL, NULL), (432, 1, 'admin.reports.enrollment', 'admin', 'Visited: admin/reports/enrollment', 'زار: admin/reports/enrollment', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"route_name\":\"admin.reports.enrollment\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@enrollment\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:15:25', NULL, NULL, NULL), (433, 1, 'admin.reports.enrollment', 'admin', 'Visited: admin/reports/enrollment', 'زار: admin/reports/enrollment', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"route_name\":\"admin.reports.enrollment\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@enrollment\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:15:26', NULL, NULL, NULL), (434, 1, 'admin.reports.attendance', 'admin', 'Visited: admin/reports/attendance', 'زار: admin/reports/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"route_name\":\"admin.reports.attendance\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@attendance\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:15:38', NULL, NULL, NULL), (435, 1, 'admin.reports.custom', 'admin', 'Visited: admin/reports/custom', 'زار: admin/reports/custom', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/custom\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"route_name\":\"admin.reports.custom\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@custom\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:15:43', NULL, NULL, NULL), (436, 1, 'admin.reports.custom', 'admin', 'Visited: admin/reports/custom', 'زار: admin/reports/custom', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/custom?semester_id=&type=students&year_id=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/custom\",\"route_name\":\"admin.reports.custom\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@custom\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:15:49', NULL, NULL, NULL), (437, 1, 'admin.reports.custom', 'admin', 'Visited: admin/reports/custom', 'زار: admin/reports/custom', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/custom?semester_id=&type=students&year_id=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/custom\",\"route_name\":\"admin.reports.custom\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@custom\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:20:34', NULL, NULL, NULL), (438, 1, 'admin.reports.index', 'admin', 'Visited: admin/reports', 'زار: admin/reports', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/custom?type=students&year_id=&semester_id=\",\"route_name\":\"admin.reports.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:20:40', NULL, NULL, NULL), (439, 1, 'admin.reports.enrollment', 'admin', 'Visited: admin/reports/enrollment', 'زار: admin/reports/enrollment', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"route_name\":\"admin.reports.enrollment\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@enrollment\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:20:43', NULL, NULL, NULL), (440, 1, 'admin.reports.enrollment', 'admin', 'Visited: admin/reports/enrollment', 'زار: admin/reports/enrollment', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"route_name\":\"admin.reports.enrollment\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@enrollment\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:25:13', NULL, NULL, NULL), (441, 1, 'admin.reports.enrollment', 'admin', 'Visited: admin/reports/enrollment', 'زار: admin/reports/enrollment', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"route_name\":\"admin.reports.enrollment\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@enrollment\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:28:18', NULL, NULL, NULL), (442, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:28:52', NULL, NULL, NULL), (443, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:48:45', NULL, NULL, NULL), (444, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:51:42', NULL, NULL, NULL), (445, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 15:54:31', NULL, NULL, NULL), (446, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:00:16', NULL, NULL, NULL), (447, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:00:27', NULL, NULL, NULL), (448, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\\/enrollment\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:01:55', NULL, NULL, NULL), (449, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:02:10', NULL, NULL, NULL), (450, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:07:06', NULL, NULL, NULL), (451, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:08:09', NULL, NULL, NULL), (452, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:08:21', NULL, NULL, NULL), (453, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:09:07', NULL, NULL, NULL), (454, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:09:57', NULL, NULL, NULL), (455, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:10:34', NULL, NULL, NULL), (456, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:13:08', NULL, NULL, NULL), (457, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:14:01', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (458, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:14:06', NULL, NULL, NULL), (459, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:15:43', NULL, NULL, NULL), (460, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:15:44', NULL, NULL, NULL), (461, 1, 'admin.settings.backup.download', 'admin', 'Visited: admin/settings/backup/download', 'زار: admin/settings/backup/download', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\\/backup\\/download\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"route_name\":\"admin.settings.backup.download\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@downloadBackup\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:16:11', NULL, NULL, NULL), (462, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:16:11', NULL, NULL, NULL), (463, 1, 'admin.settings.backup.now', 'admin', 'Visited: admin/settings/backup', 'زار: admin/settings/backup', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\\/backup\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"route_name\":\"admin.settings.backup.now\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@backup\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:16:24', NULL, NULL, NULL), (464, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:16:25', NULL, NULL, NULL), (465, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:16:50', NULL, NULL, NULL), (466, 1, 'admin.reports.index', 'admin', 'Visited: admin/reports', 'زار: admin/reports', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.reports.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\ReportController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:16:57', NULL, NULL, NULL), (467, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/reports\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:17:00', NULL, NULL, NULL), (468, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:17:02', NULL, NULL, NULL), (469, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:17:03', NULL, NULL, NULL), (470, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:17:08', NULL, NULL, NULL), (471, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:27:16', NULL, NULL, NULL), (472, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:27:18', NULL, NULL, NULL), (473, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:27:18', NULL, NULL, NULL), (474, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:27:22', NULL, NULL, NULL), (475, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:27:23', NULL, NULL, NULL), (476, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:27:29', NULL, NULL, NULL), (477, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:27:31', NULL, NULL, NULL), (478, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:29:43', NULL, NULL, NULL), (479, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:29:46', NULL, NULL, NULL), (480, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:29:54', NULL, NULL, NULL), (481, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:34:16', NULL, NULL, NULL), (482, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:34:21', NULL, NULL, NULL), (483, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:34:22', NULL, NULL, NULL), (484, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:35:27', NULL, NULL, NULL), (485, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:38:39', NULL, NULL, NULL), (486, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:40:15', NULL, NULL, NULL), (487, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:43:34', NULL, NULL, NULL), (488, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:47:08', NULL, NULL, NULL), (489, 1, 'admin.assessment-types.index', 'admin', 'Visited: admin/assessment-types', 'زار: admin/assessment-types', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/assessment-types\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.assessment-types.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AssessmentTypeController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:47:21', NULL, NULL, NULL), (490, 1, 'admin.competencies.index', 'admin', 'Visited: admin/competencies', 'زار: admin/competencies', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/competencies\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/assessment-types\",\"route_name\":\"admin.competencies.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\CompetencyController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:47:30', NULL, NULL, NULL), (491, 1, 'admin.fee-structures.index', 'admin', 'Visited: admin/fee-structures', 'زار: admin/fee-structures', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/fee-structures\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/competencies\",\"route_name\":\"admin.fee-structures.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\FeeStructureController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:47:32', NULL, NULL, NULL), (492, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/fee-structures\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:47:34', NULL, NULL, NULL), (493, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:47:38', NULL, NULL, NULL), (494, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:50:02', NULL, NULL, NULL), (495, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:50:46', NULL, NULL, NULL), (496, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:51:30', NULL, NULL, NULL), (497, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:51:38', NULL, NULL, NULL), (498, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:52:25', NULL, NULL, NULL), (499, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:53:08', NULL, NULL, NULL), (500, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:54:03', NULL, NULL, NULL), (501, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:54:38', NULL, NULL, NULL), (502, 1, 'admin.medical.show', 'admin', 'Visited: admin/medical/4', 'زار: admin/medical/4', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\\/4\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"route_name\":\"admin.medical.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@show\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:54:54', NULL, NULL, NULL), (503, 1, 'admin.attendance.overview', 'admin', 'Visited: admin/attendance/overview', 'زار: admin/attendance/overview', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\\/4\",\"route_name\":\"admin.attendance.overview\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@overview\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:55:00', NULL, NULL, NULL), (504, 1, 'admin.attendance.reports', 'admin', 'Visited: admin/attendance/reports', 'زار: admin/attendance/reports', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/reports\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.attendance.reports\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@reports\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:55:08', NULL, NULL, NULL), (505, 1, 'admin.attendance.reports', 'admin', 'Visited: admin/attendance/reports', 'زار: admin/attendance/reports', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/reports\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.attendance.reports\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@reports\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:56:20', NULL, NULL, NULL), (506, 1, 'admin.attendance.reports', 'admin', 'Visited: admin/attendance/reports', 'زار: admin/attendance/reports', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/reports\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/overview\",\"route_name\":\"admin.attendance.reports\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AttendanceController@reports\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:56:25', NULL, NULL, NULL), (507, 1, 'admin.medical.index', 'admin', 'Visited: admin/medical', 'زار: admin/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/attendance\\/reports\",\"route_name\":\"admin.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\MedicalController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:56:47', NULL, NULL, NULL), (508, 1, 'admin.payments.index', 'admin', 'Visited: admin/payments', 'زار: admin/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"route_name\":\"admin.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\PaymentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:56:52', NULL, NULL, NULL), (509, 1, 'admin.payments.index', 'admin', 'Visited: admin/payments', 'زار: admin/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"route_name\":\"admin.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\PaymentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:58:48', NULL, NULL, NULL), (510, 1, 'admin.payments.index', 'admin', 'Visited: admin/payments', 'زار: admin/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/medical\",\"route_name\":\"admin.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\PaymentController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:59:32', NULL, NULL, NULL), (511, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/payments\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:59:42', NULL, NULL, NULL), (512, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:59:46', NULL, NULL, NULL), (513, 1, 'admin.settings.index', 'admin', 'Visited: admin/settings', 'زار: admin/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.settings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\SettingController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 16:59:52', NULL, NULL, NULL), (514, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:09', NULL, NULL, NULL), (515, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23ffffff\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:13', NULL, NULL, NULL), (516, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23212529\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:16', NULL, NULL, NULL), (517, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%230d1117\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:18', NULL, NULL, NULL), (518, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=violet\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:21', NULL, NULL, NULL), (519, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:28', NULL, NULL, NULL), (520, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:33', NULL, NULL, NULL), (521, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23f8f9fa\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:35', NULL, NULL, NULL), (522, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23f8f9fa\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:40', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (523, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%231a1d21\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:43', NULL, NULL, NULL), (524, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 17:00:47', NULL, NULL, NULL), (525, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:01:26', NULL, NULL, NULL), (526, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=sky\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:22:16', NULL, NULL, NULL), (527, 1, 'admin.logs.index', 'admin', 'Visited: admin/logs', 'زار: admin/logs', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.logs.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\LogController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:22:20', NULL, NULL, NULL), (528, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=red\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:22:25', NULL, NULL, NULL), (529, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:22:27', NULL, NULL, NULL), (530, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:22:32', NULL, NULL, NULL), (531, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:22:35', NULL, NULL, NULL), (532, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=sky\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:22:45', NULL, NULL, NULL), (533, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:30:55', NULL, NULL, NULL), (534, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23212529\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:04', NULL, NULL, NULL), (535, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:08', NULL, NULL, NULL), (536, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:13', NULL, NULL, NULL), (537, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=cyan\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:19', NULL, NULL, NULL), (538, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=indigo\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:23', NULL, NULL, NULL), (539, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%230d1117\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:27', NULL, NULL, NULL), (540, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%231a1d21\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:31', NULL, NULL, NULL), (541, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:34', NULL, NULL, NULL), (542, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23f8f9fa\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:43', NULL, NULL, NULL), (543, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:49', NULL, NULL, NULL), (544, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%231a1d21\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:31:59', NULL, NULL, NULL), (545, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23212529\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:34:53', NULL, NULL, NULL), (546, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:34:58', NULL, NULL, NULL), (547, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:35:08', NULL, NULL, NULL), (548, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23f8f9fa\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:35:12', NULL, NULL, NULL), (549, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:35:15', NULL, NULL, NULL), (550, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%231a1d21\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:35:17', NULL, NULL, NULL), (551, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:35:21', NULL, NULL, NULL), (552, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:35:24', NULL, NULL, NULL), (553, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:35:29', NULL, NULL, NULL), (554, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%231a1d21\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:35:32', NULL, NULL, NULL), (555, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:52:24', NULL, NULL, NULL), (556, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:52:38', NULL, NULL, NULL), (557, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:52:41', NULL, NULL, NULL), (558, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:52:45', NULL, NULL, NULL), (559, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23f8f9fa\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:52:50', NULL, NULL, NULL), (560, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23f8f9fa\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:52:54', NULL, NULL, NULL), (561, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:52:57', NULL, NULL, NULL), (562, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:53:00', NULL, NULL, NULL), (563, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:53:06', NULL, NULL, NULL), (564, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%230d1117\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:53:10', NULL, NULL, NULL), (565, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=teal\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:53:13', NULL, NULL, NULL), (566, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:53:16', NULL, NULL, NULL), (567, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:53:19', NULL, NULL, NULL), (568, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:16', NULL, NULL, NULL), (569, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:22', NULL, NULL, NULL), (570, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%231a1d21\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:26', NULL, NULL, NULL), (571, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%230d1117\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:29', NULL, NULL, NULL), (572, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=josefin-sans\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:33', NULL, NULL, NULL), (573, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=roboto\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:38', NULL, NULL, NULL), (574, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=dm-sans\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:41', NULL, NULL, NULL), (575, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=lato\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:44', NULL, NULL, NULL), (576, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=orange-ave\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:47', NULL, NULL, NULL), (577, 1, 'accessibility.set-font', 'navigation', 'Visited: accessibility/set-font', 'زار: accessibility/set-font', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-font?font=priestacy\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-font\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setFont\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:50', NULL, NULL, NULL), (578, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:55', NULL, NULL, NULL), (579, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23212529\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 18:57:58', NULL, NULL, NULL), (580, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/logs\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:02:30', NULL, NULL, NULL), (581, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23212529\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:02:35', NULL, NULL, NULL), (582, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:02:53', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (583, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:02:56', NULL, NULL, NULL), (584, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:03:00', NULL, NULL, NULL), (585, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:03:03', NULL, NULL, NULL), (586, 1, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23f8f9fa\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"V4Cpn3fTZsq8vvYtxw2zx0goUxjrXSG7qWuombXG\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:03:06', NULL, NULL, NULL), (587, 2, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:07:23', NULL, NULL, NULL), (588, 2, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:07:24', NULL, NULL, NULL), (589, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:07:34', NULL, NULL, NULL), (590, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:11:14', NULL, NULL, NULL), (591, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:13:32', NULL, NULL, NULL), (592, 2, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23e9ecef\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:13:41', NULL, NULL, NULL), (593, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:13:44', NULL, NULL, NULL), (594, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:13:46', NULL, NULL, NULL), (595, 2, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:14:02', NULL, NULL, NULL), (596, 2, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:14:33', NULL, NULL, NULL), (597, 2, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:17:54', NULL, NULL, NULL), (598, 2, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:25:25', NULL, NULL, NULL), (599, 2, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%231a1d21\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:25:32', NULL, NULL, NULL), (600, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=teal\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:25:35', NULL, NULL, NULL), (601, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=rose\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:25:38', NULL, NULL, NULL), (602, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:25:48', NULL, NULL, NULL), (603, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:28:40', NULL, NULL, NULL), (604, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:30:00', NULL, NULL, NULL), (605, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:35:23', NULL, NULL, NULL), (606, 2, 'teacher.assessments.index', 'teacher', 'Visited: teacher/assessments', 'زار: teacher/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"route_name\":\"teacher.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@teacherIndex\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:40:00', NULL, NULL, NULL), (607, 2, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:40:08', NULL, NULL, NULL), (608, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:40:20', NULL, NULL, NULL), (609, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:40:29', NULL, NULL, NULL), (610, 2, 'teacher.assessments.index', 'teacher', 'Visited: teacher/assessments', 'زار: teacher/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@teacherIndex\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:40:30', NULL, NULL, NULL), (611, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:40:39', NULL, NULL, NULL), (612, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:43:08', NULL, NULL, NULL), (613, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:43:25', NULL, NULL, NULL), (614, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:43:34', NULL, NULL, NULL), (615, 2, 'accessibility.set-bg-color', 'navigation', 'Visited: accessibility/set-bg-color', 'زار: accessibility/set-bg-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-bg-color?color=%23212529\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"accessibility.set-bg-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setBgColor\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:43:38', NULL, NULL, NULL), (616, 2, 'teacher.messages.show', 'teacher', 'Visited: teacher/messages/5', 'زار: teacher/messages/5', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/5\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@show\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:43:49', NULL, NULL, NULL), (617, 2, 'teacher.messages.show', 'teacher', 'Visited: teacher/messages/5', 'زار: teacher/messages/5', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/5\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@show\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:47:45', NULL, NULL, NULL), (618, 2, 'teacher.messages.show', 'teacher', 'Visited: teacher/messages/5', 'زار: teacher/messages/5', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/5\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@show\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:47:50', NULL, NULL, NULL), (619, 2, 'teacher.messages.show', 'teacher', 'Visited: teacher/messages/4', 'زار: teacher/messages/4', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@show\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:48:05', NULL, NULL, NULL), (620, 2, 'teacher.messages.show', 'teacher', 'Visited: teacher/messages/4', 'زار: teacher/messages/4', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@show\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:53:03', NULL, NULL, NULL), (621, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:55:52', NULL, NULL, NULL), (622, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:56:06', NULL, NULL, NULL), (623, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:56:19', NULL, NULL, NULL), (624, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:56:51', NULL, NULL, NULL), (625, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:58:32', NULL, NULL, NULL), (626, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:59:40', NULL, NULL, NULL), (627, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 19:59:58', NULL, NULL, NULL), (628, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 20:00:35', NULL, NULL, NULL), (629, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 20:02:03', NULL, NULL, NULL), (630, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 20:03:37', NULL, NULL, NULL), (631, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 20:03:58', NULL, NULL, NULL), (632, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 20:04:05', NULL, NULL, NULL), (633, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/4\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"xAHtCbn0cAUMPLy4d5korafEA08X5K8eg0YKiZYM\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 20:06:49', NULL, NULL, NULL), (634, 2, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:17:56', NULL, NULL, NULL), (635, 2, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:17:56', NULL, NULL, NULL), (636, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:17:56', NULL, NULL, NULL), (637, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:18:01', NULL, NULL, NULL), (638, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:22:15', NULL, NULL, NULL), (639, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:22:27', NULL, NULL, NULL), (640, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:22:29', NULL, NULL, NULL), (641, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:22:31', NULL, NULL, NULL), (642, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:12', NULL, NULL, NULL), (643, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:22', NULL, NULL, NULL), (644, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:25', NULL, NULL, NULL), (645, 2, 'teacher.assessments.index', 'teacher', 'Visited: teacher/assessments', 'زار: teacher/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@teacherIndex\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:27', NULL, NULL, NULL), (646, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:29', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (647, 2, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:30', NULL, NULL, NULL), (648, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:32', NULL, NULL, NULL), (649, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:33', NULL, NULL, NULL), (650, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=high_contrast\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:41', NULL, NULL, NULL), (651, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:48', NULL, NULL, NULL), (652, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=high_contrast\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:54', NULL, NULL, NULL), (653, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:57', NULL, NULL, NULL), (654, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:32:59', NULL, NULL, NULL), (655, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=dyslexic_font\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:33:02', NULL, NULL, NULL), (656, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:33:06', NULL, NULL, NULL), (657, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:35:28', NULL, NULL, NULL), (658, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:35:38', NULL, NULL, NULL), (659, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:37:17', NULL, NULL, NULL), (660, 2, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:37:42', NULL, NULL, NULL), (661, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:37:43', NULL, NULL, NULL), (662, 2, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:37:48', NULL, NULL, NULL), (663, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:37:48', NULL, NULL, NULL), (664, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:40:12', NULL, NULL, NULL), (665, 2, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:40:19', NULL, NULL, NULL), (666, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:40:19', NULL, NULL, NULL), (667, 2, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:40:25', NULL, NULL, NULL), (668, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:40:25', NULL, NULL, NULL), (669, 2, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:40:39', NULL, NULL, NULL), (670, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:40:39', NULL, NULL, NULL), (671, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:44:31', NULL, NULL, NULL), (672, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:44:42', NULL, NULL, NULL), (673, 2, 'accessibility.update', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@update\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:44:47', NULL, NULL, NULL), (674, 2, 'accessibility.edit', 'navigation', 'Visited: accessibility', 'زار: accessibility', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\",\"route_name\":\"accessibility.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@edit\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:44:48', NULL, NULL, NULL), (675, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:49:48', NULL, NULL, NULL), (676, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:51:04', NULL, NULL, NULL), (677, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:53:20', NULL, NULL, NULL), (678, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:54:08', NULL, NULL, NULL), (679, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:56:23', NULL, NULL, NULL), (680, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:56:38', NULL, NULL, NULL), (681, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:56:43', NULL, NULL, NULL), (682, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:58:56', NULL, NULL, NULL), (683, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:59:04', NULL, NULL, NULL), (684, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:59:11', NULL, NULL, NULL), (685, 2, 'accessibility.reset', 'navigation', 'Visited: accessibility/reset', 'زار: accessibility/reset', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/reset\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.reset\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@reset\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:59:20', NULL, NULL, NULL), (686, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 22:59:21', NULL, NULL, NULL), (687, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:01:41', NULL, NULL, NULL), (688, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:02:23', NULL, NULL, NULL), (689, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=green\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:02:34', NULL, NULL, NULL), (690, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:02:34', NULL, NULL, NULL), (691, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=emerald\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:02:38', NULL, NULL, NULL), (692, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:02:45', NULL, NULL, NULL), (693, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:02:50', NULL, NULL, NULL), (694, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:02:51', NULL, NULL, NULL), (695, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:03:06', NULL, NULL, NULL), (696, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:03:19', NULL, NULL, NULL), (697, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:06:49', NULL, NULL, NULL), (698, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:08:03', NULL, NULL, NULL), (699, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:10:03', NULL, NULL, NULL), (700, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=reading_focus\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:10:13', NULL, NULL, NULL), (701, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=cursor_size\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:10:21', NULL, NULL, NULL), (702, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=stop_animations\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:10:47', NULL, NULL, NULL), (703, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:10:52', NULL, NULL, NULL), (704, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:10:53', NULL, NULL, NULL), (705, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=cyan\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:10:56', NULL, NULL, NULL), (706, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=increased_line_spacing\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:10:59', NULL, NULL, NULL), (707, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=keyboard_navigation\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:11:01', NULL, NULL, NULL), (708, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:13:27', NULL, NULL, NULL), (709, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=reduce_motion\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:13:32', NULL, NULL, NULL), (710, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:13:33', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (711, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=increased_line_spacing\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:13:37', NULL, NULL, NULL), (712, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:13:38', NULL, NULL, NULL), (713, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=increased_line_spacing\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:13:43', NULL, NULL, NULL), (714, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:13:44', NULL, NULL, NULL), (715, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=focus_indicators\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:13:52', NULL, NULL, NULL), (716, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:20:22', NULL, NULL, NULL), (717, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:20:34', NULL, NULL, NULL), (718, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:20:38', NULL, NULL, NULL), (719, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:20:38', NULL, NULL, NULL), (720, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:20:48', NULL, NULL, NULL), (721, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:20:48', NULL, NULL, NULL), (722, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=dyslexic_font\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:20:57', NULL, NULL, NULL), (723, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:20:57', NULL, NULL, NULL), (724, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:21:00', NULL, NULL, NULL), (725, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:21:00', NULL, NULL, NULL), (726, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:23:51', NULL, NULL, NULL), (727, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=stop_animations\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:23:57', NULL, NULL, NULL), (728, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:23:59', NULL, NULL, NULL), (729, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:24:05', NULL, NULL, NULL), (730, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:24:07', NULL, NULL, NULL), (731, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:03', NULL, NULL, NULL), (732, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:12', NULL, NULL, NULL), (733, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:13', NULL, NULL, NULL), (734, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:19', NULL, NULL, NULL), (735, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=high_contrast_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:24', NULL, NULL, NULL), (736, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:25', NULL, NULL, NULL), (737, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=increased_line_spacing\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:41', NULL, NULL, NULL), (738, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:43', NULL, NULL, NULL), (739, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=reading_focus\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:51', NULL, NULL, NULL), (740, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:26:52', NULL, NULL, NULL), (741, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:31:49', NULL, NULL, NULL), (742, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:32:09', NULL, NULL, NULL), (743, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:32:18', NULL, NULL, NULL), (744, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:32:20', NULL, NULL, NULL), (745, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:36:06', NULL, NULL, NULL), (746, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:36:11', NULL, NULL, NULL), (747, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:36:13', NULL, NULL, NULL), (748, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:37:28', NULL, NULL, NULL), (749, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:40:32', NULL, NULL, NULL), (750, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:42:19', NULL, NULL, NULL), (751, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=yellow\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:42:28', NULL, NULL, NULL), (752, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:42:35', NULL, NULL, NULL), (753, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:42:36', NULL, NULL, NULL), (754, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:45:28', NULL, NULL, NULL), (755, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:45:33', NULL, NULL, NULL), (756, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:47:11', NULL, NULL, NULL), (757, 2, 'accessibility.settings', 'navigation', 'Visited: accessibility/settings', 'زار: accessibility/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.settings\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@settings\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:47:25', NULL, NULL, NULL), (758, 2, 'accessibility.settings', 'navigation', 'Visited: accessibility/settings', 'زار: accessibility/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.settings\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@settings\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:48:49', NULL, NULL, NULL), (759, 2, 'accessibility.settings', 'navigation', 'Visited: accessibility/settings', 'زار: accessibility/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.settings\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@settings\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:51:00', NULL, NULL, NULL), (760, 2, 'accessibility.settings', 'navigation', 'Visited: accessibility/settings', 'زار: accessibility/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.settings\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@settings\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:51:04', NULL, NULL, NULL), (761, 2, 'accessibility.settings', 'navigation', 'Visited: accessibility/settings', 'زار: accessibility/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.settings\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@settings\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:51:13', NULL, NULL, NULL), (762, 2, 'accessibility.settings', 'navigation', 'Visited: accessibility/settings', 'زار: accessibility/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.settings\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@settings\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:51:22', NULL, NULL, NULL), (763, 2, 'accessibility.settings', 'navigation', 'Visited: accessibility/settings', 'زار: accessibility/settings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/settings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.settings\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@settings\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-13 23:52:06', NULL, NULL, NULL), (764, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:00:30', NULL, NULL, NULL), (765, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=cursor_size\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:00:40', NULL, NULL, NULL), (766, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:00:41', NULL, NULL, NULL), (767, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:00:55', NULL, NULL, NULL), (768, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:01:18', NULL, NULL, NULL), (769, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=high_contrast_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:01:21', NULL, NULL, NULL), (770, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:01:22', NULL, NULL, NULL), (771, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:01:53', NULL, NULL, NULL), (772, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=cursor_size\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:01:54', NULL, NULL, NULL), (773, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:01:55', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (774, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:01:56', NULL, NULL, NULL), (775, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:01:57', NULL, NULL, NULL), (776, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:09:27', NULL, NULL, NULL), (777, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:10:40', NULL, NULL, NULL), (778, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=high_contrast_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:10:47', NULL, NULL, NULL), (779, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:10:48', NULL, NULL, NULL), (780, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:15:30', NULL, NULL, NULL), (781, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=high_contrast_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:15:37', NULL, NULL, NULL), (782, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:15:39', NULL, NULL, NULL), (783, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:15:45', NULL, NULL, NULL), (784, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:15:46', NULL, NULL, NULL), (785, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:19:29', NULL, NULL, NULL), (786, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:19:35', NULL, NULL, NULL), (787, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:19:36', NULL, NULL, NULL), (788, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:05', NULL, NULL, NULL), (789, 2, 'accessibility.reset', 'navigation', 'Visited: accessibility/reset', 'زار: accessibility/reset', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/reset\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.reset\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@reset\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:16', NULL, NULL, NULL), (790, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:17', NULL, NULL, NULL), (791, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=increased_line_spacing\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:24', NULL, NULL, NULL), (792, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:26', NULL, NULL, NULL), (793, 2, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:31', NULL, NULL, NULL), (794, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:35', NULL, NULL, NULL), (795, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:39', NULL, NULL, NULL), (796, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=underline_links\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:48', NULL, NULL, NULL), (797, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:24:49', NULL, NULL, NULL), (798, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:08', NULL, NULL, NULL), (799, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:12', NULL, NULL, NULL), (800, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:13', NULL, NULL, NULL), (801, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:24', NULL, NULL, NULL), (802, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=high_contrast_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:30', NULL, NULL, NULL), (803, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:31', NULL, NULL, NULL), (804, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=high_contrast_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:38', NULL, NULL, NULL), (805, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:39', NULL, NULL, NULL), (806, 2, 'accessibility.toggle', 'navigation', 'Visited: accessibility/toggle', 'زار: accessibility/toggle', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/toggle?setting=large_text_mode\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"accessibility.toggle\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@toggle\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:52', NULL, NULL, NULL), (807, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"VhbILkWXtF6Ak8GF8XP9lAXY4uvDZRY6TKbLj7os\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:25:53', NULL, NULL, NULL), (808, 10, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:27:43', NULL, NULL, NULL), (809, 10, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:27:44', NULL, NULL, NULL), (810, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:27:52', NULL, NULL, NULL), (811, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:32:46', NULL, NULL, NULL), (812, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:36:17', NULL, NULL, NULL), (813, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:38:19', NULL, NULL, NULL), (814, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:39:31', NULL, NULL, NULL), (815, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:45:16', NULL, NULL, NULL), (816, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:45:21', NULL, NULL, NULL), (817, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:45:39', NULL, NULL, NULL), (818, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:47:25', NULL, NULL, NULL), (819, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:47:41', NULL, NULL, NULL), (820, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:49:39', NULL, NULL, NULL), (821, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:49:52', NULL, NULL, NULL), (822, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:50:40', NULL, NULL, NULL), (823, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:53:00', NULL, NULL, NULL), (824, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:54:25', NULL, NULL, NULL), (825, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:54:30', NULL, NULL, NULL), (826, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:55:32', NULL, NULL, NULL), (827, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:56:52', NULL, NULL, NULL), (828, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"4Ut4j6M6051sGAsveQAwLlxzKFFYJM07rcXHtK0X\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 00:59:46', NULL, NULL, NULL), (829, 10, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"MI2XySxezYN5unuGAqC6WRnYFN7wOkHFGr9MXZuq\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 01:04:54', NULL, NULL, NULL), (830, 10, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"MI2XySxezYN5unuGAqC6WRnYFN7wOkHFGr9MXZuq\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 01:04:55', NULL, NULL, NULL), (831, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"MI2XySxezYN5unuGAqC6WRnYFN7wOkHFGr9MXZuq\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 01:05:03', NULL, NULL, NULL), (832, 10, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"MI2XySxezYN5unuGAqC6WRnYFN7wOkHFGr9MXZuq\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 01:05:04', NULL, NULL, NULL), (833, 10, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"MI2XySxezYN5unuGAqC6WRnYFN7wOkHFGr9MXZuq\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 01:05:05', NULL, NULL, NULL), (834, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"MI2XySxezYN5unuGAqC6WRnYFN7wOkHFGr9MXZuq\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 01:05:10', NULL, NULL, NULL), (835, 10, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:20:38', NULL, NULL, NULL), (836, 10, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:20:38', NULL, NULL, NULL), (837, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:20:40', NULL, NULL, NULL), (838, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:21:26', NULL, NULL, NULL), (839, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:27:55', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (840, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:30:12', NULL, NULL, NULL), (841, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:32:01', NULL, NULL, NULL), (842, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:32:57', NULL, NULL, NULL), (843, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:34:08', NULL, NULL, NULL), (844, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:35:32', NULL, NULL, NULL), (845, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:36:28', NULL, NULL, NULL), (846, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:36:47', NULL, NULL, NULL), (847, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:37:41', NULL, NULL, NULL), (848, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:39:10', NULL, NULL, NULL), (849, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:40:16', NULL, NULL, NULL), (850, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:40:27', NULL, NULL, NULL), (851, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:42:09', NULL, NULL, NULL), (852, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:42:11', NULL, NULL, NULL), (853, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:45:20', NULL, NULL, NULL), (854, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:46:26', NULL, NULL, NULL), (855, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:47:07', NULL, NULL, NULL), (856, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:48:11', NULL, NULL, NULL), (857, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:48:56', NULL, NULL, NULL), (858, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:49:12', NULL, NULL, NULL), (859, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:49:16', NULL, NULL, NULL), (860, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:49:48', NULL, NULL, NULL), (861, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:49:56', NULL, NULL, NULL), (862, 10, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:49:59', NULL, NULL, NULL), (863, 10, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=cyan\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:50:18', NULL, NULL, NULL), (864, 10, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=green\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:50:20', NULL, NULL, NULL), (865, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:50:51', NULL, NULL, NULL), (866, 10, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:50:54', NULL, NULL, NULL), (867, 10, 'student.courses.index', 'student', 'Visited: student/courses', 'زار: student/courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:51:03', NULL, NULL, NULL), (868, 10, 'student.courses.index', 'student', 'Visited: student/courses', 'زار: student/courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\",\"route_name\":\"student.courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:51:35', NULL, NULL, NULL), (869, 10, 'student.assessments.index', 'student', 'Visited: student/assessments', 'زار: student/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\",\"route_name\":\"student.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\AssessmentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:52:04', NULL, NULL, NULL), (870, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/assessments\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:52:09', NULL, NULL, NULL), (871, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:52:53', NULL, NULL, NULL), (872, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:53:19', NULL, NULL, NULL), (873, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:53:23', NULL, NULL, NULL), (874, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:53:26', NULL, NULL, NULL), (875, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:54:17', NULL, NULL, NULL), (876, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 12:54:28', NULL, NULL, NULL), (877, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:30:27', NULL, NULL, NULL), (878, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:32:16', NULL, NULL, NULL), (879, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:36:01', NULL, NULL, NULL), (880, 10, 'student.attendance.index', 'student', 'Visited: student/attendance', 'زار: student/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades\",\"route_name\":\"student.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\AttendanceController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:36:12', NULL, NULL, NULL), (881, 10, 'student.enrollment.register', 'student', 'Visited: student/enrollment/register', 'زار: student/enrollment/register', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/enrollment\\/register\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/attendance\",\"route_name\":\"student.enrollment.register\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\EnrollmentController@register\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:36:28', NULL, NULL, NULL), (882, 10, 'student.announcements.index', 'student', 'Visited: student/announcements', 'زار: student/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/enrollment\\/register\",\"route_name\":\"student.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\AnnouncementController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:36:32', NULL, NULL, NULL), (883, 10, 'student.messages.index', 'student', 'Visited: student/messages', 'زار: student/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/announcements\",\"route_name\":\"student.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MessageController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:36:38', NULL, NULL, NULL), (884, 10, 'student.messages.index', 'student', 'Visited: student/messages', 'زار: student/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/announcements\",\"route_name\":\"student.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MessageController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:40:06', NULL, NULL, NULL), (885, 10, 'student.messages.index', 'student', 'Visited: student/messages', 'زار: student/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/announcements\",\"route_name\":\"student.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MessageController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:47:40', NULL, NULL, NULL), (886, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:47:45', NULL, NULL, NULL), (887, 10, 'student.messages.index', 'student', 'Visited: student/messages', 'زار: student/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MessageController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:47:59', NULL, NULL, NULL), (888, 10, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=yellow\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:48:04', NULL, NULL, NULL), (889, 10, 'student.messages.index', 'student', 'Visited: student/messages', 'زار: student/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MessageController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:52:50', NULL, NULL, NULL), (890, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:52:54', NULL, NULL, NULL), (891, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:57:18', NULL, NULL, NULL), (892, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:57:26', NULL, NULL, NULL), (893, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:57:30', NULL, NULL, NULL), (894, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:57:37', NULL, NULL, NULL), (895, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:58:18', NULL, NULL, NULL), (896, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:58:21', NULL, NULL, NULL), (897, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 13:59:51', NULL, NULL, NULL), (898, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:00:27', NULL, NULL, NULL), (899, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:00:38', NULL, NULL, NULL), (900, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:01:36', NULL, NULL, NULL), (901, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:01:39', NULL, NULL, NULL), (902, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:04:15', NULL, NULL, NULL), (903, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:05:38', NULL, NULL, NULL), (904, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:05:42', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (905, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:06:06', NULL, NULL, NULL), (906, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:06:51', NULL, NULL, NULL), (907, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:07:26', NULL, NULL, NULL), (908, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:12:51', NULL, NULL, NULL), (909, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:13:47', NULL, NULL, NULL), (910, 10, 'student.payments.index', 'student', 'Visited: student/payments', 'زار: student/payments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.payments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\PaymentController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:13:48', NULL, NULL, NULL), (911, 10, 'student.notifications.index', 'student', 'Visited: student/notifications', 'زار: student/notifications', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/notifications\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/payments\",\"route_name\":\"student.notifications.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\StudentNotificationController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:15:47', NULL, NULL, NULL), (912, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/notifications\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:15:50', NULL, NULL, NULL), (913, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:16:05', NULL, NULL, NULL), (914, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:16:08', NULL, NULL, NULL), (915, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:22:54', NULL, NULL, NULL), (916, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:24:12', NULL, NULL, NULL), (917, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:24:47', NULL, NULL, NULL), (918, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:25:17', NULL, NULL, NULL), (919, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:26:37', NULL, NULL, NULL), (920, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:26:48', NULL, NULL, NULL), (921, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:30:52', NULL, NULL, NULL), (922, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:31:06', NULL, NULL, NULL), (923, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"qfwOWOhR6ZJ9c160OTZHMOTGcqsLleCEyBzgmA0H\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:31:48', NULL, NULL, NULL), (924, 2, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"aZhunfkLfoBDY3fXb0rhFysvvPpNLVezNeIvJfAV\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:33:06', NULL, NULL, NULL), (925, 2, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"aZhunfkLfoBDY3fXb0rhFysvvPpNLVezNeIvJfAV\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:33:07', NULL, NULL, NULL), (926, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"aZhunfkLfoBDY3fXb0rhFysvvPpNLVezNeIvJfAV\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:33:09', NULL, NULL, NULL), (927, 2, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"aZhunfkLfoBDY3fXb0rhFysvvPpNLVezNeIvJfAV\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:33:10', NULL, NULL, NULL), (928, 2, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"aZhunfkLfoBDY3fXb0rhFysvvPpNLVezNeIvJfAV\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:33:11', NULL, NULL, NULL), (929, 2, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"aZhunfkLfoBDY3fXb0rhFysvvPpNLVezNeIvJfAV\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:33:12', NULL, NULL, NULL), (930, 2, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"aZhunfkLfoBDY3fXb0rhFysvvPpNLVezNeIvJfAV\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:33:13', NULL, NULL, NULL), (931, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"aZhunfkLfoBDY3fXb0rhFysvvPpNLVezNeIvJfAV\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:33:15', NULL, NULL, NULL), (932, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"aZhunfkLfoBDY3fXb0rhFysvvPpNLVezNeIvJfAV\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:33:53', NULL, NULL, NULL), (933, 2, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:48:20', NULL, NULL, NULL), (934, 2, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:48:21', NULL, NULL, NULL), (935, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:48:22', NULL, NULL, NULL), (936, 2, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:52:25', NULL, NULL, NULL), (937, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:52:29', NULL, NULL, NULL), (938, 2, 'teacher.assessments.index', 'teacher', 'Visited: teacher/assessments', 'زار: teacher/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"route_name\":\"teacher.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@teacherIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:52:32', NULL, NULL, NULL), (939, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:52:36', NULL, NULL, NULL), (940, 2, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:52:40', NULL, NULL, NULL), (941, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:52:43', NULL, NULL, NULL), (942, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:53:46', NULL, NULL, NULL), (943, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:55:50', NULL, NULL, NULL), (944, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:56:47', NULL, NULL, NULL), (945, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:57:53', NULL, NULL, NULL), (946, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 14:59:04', NULL, NULL, NULL), (947, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 15:08:15', NULL, NULL, NULL), (948, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 15:08:30', NULL, NULL, NULL), (949, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 15:11:23', NULL, NULL, NULL), (950, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 15:21:05', NULL, NULL, NULL), (951, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 15:22:26', NULL, NULL, NULL), (952, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 15:24:00', NULL, NULL, NULL), (953, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 15:25:20', NULL, NULL, NULL), (954, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 15:26:41', NULL, NULL, NULL), (955, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 15:57:11', NULL, NULL, NULL), (956, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:04:51', NULL, NULL, NULL), (957, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:12:20', NULL, NULL, NULL), (958, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:14:50', NULL, NULL, NULL), (959, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:15:14', NULL, NULL, NULL), (960, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:16:45', NULL, NULL, NULL), (961, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:17:01', NULL, NULL, NULL), (962, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:18:37', NULL, NULL, NULL), (963, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:19:44', NULL, NULL, NULL), (964, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:24:01', NULL, NULL, NULL), (965, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:25:20', NULL, NULL, NULL), (966, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:26:20', NULL, NULL, NULL), (967, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:29:23', NULL, NULL, NULL), (968, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:30:49', NULL, NULL, NULL), (969, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:31:29', NULL, NULL, NULL), (970, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:47:42', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (971, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:47:55', NULL, NULL, NULL), (972, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:48:03', NULL, NULL, NULL), (973, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 16:54:37', NULL, NULL, NULL), (974, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:06:24', NULL, NULL, NULL), (975, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:06:43', NULL, NULL, NULL), (976, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:09:43', NULL, NULL, NULL), (977, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:15:50', NULL, NULL, NULL), (978, 2, 'productivity.notes.store', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesStore\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:16:12', NULL, NULL, NULL), (979, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:16:20', NULL, NULL, NULL), (980, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:18:07', NULL, NULL, NULL), (981, 2, 'productivity.notes.store', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesStore\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:23:20', NULL, NULL, NULL), (982, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:23:22', NULL, NULL, NULL), (983, 2, 'productivity.notes.store', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesStore\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:23:59', NULL, NULL, NULL), (984, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:24:00', NULL, NULL, NULL), (985, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:26:30', NULL, NULL, NULL), (986, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:29:12', NULL, NULL, NULL), (987, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:29:18', NULL, NULL, NULL), (988, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=cyan\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:29:41', NULL, NULL, NULL), (989, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=orange\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:29:45', NULL, NULL, NULL), (990, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=violet\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:29:49', NULL, NULL, NULL), (991, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:29:53', NULL, NULL, NULL), (992, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:29:59', NULL, NULL, NULL), (993, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:30:06', NULL, NULL, NULL), (994, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"A0IbM4j8ZxEaF01axNz5iChWmLUMrm2ImPqd2nLJ\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 17:30:22', NULL, NULL, NULL), (995, 2, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:30:50', NULL, NULL, NULL), (996, 2, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:30:50', NULL, NULL, NULL), (997, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:30:50', NULL, NULL, NULL), (998, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:39:07', NULL, NULL, NULL), (999, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:48:44', NULL, NULL, NULL), (1000, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:49:03', NULL, NULL, NULL), (1001, 2, 'productivity.notes.pin', 'navigation', 'Visited: productivity/notes/3/pin', 'زار: productivity/notes/3/pin', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/3\\/pin\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.pin\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesTogglePin\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:49:11', NULL, NULL, NULL), (1002, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:49:12', NULL, NULL, NULL), (1003, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:59:21', NULL, NULL, NULL), (1004, 2, 'productivity.notes.update', 'navigation', 'Visited: productivity/notes/2', 'زار: productivity/notes/2', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/2\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesUpdate\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:59:41', NULL, NULL, NULL), (1005, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 20:59:42', NULL, NULL, NULL), (1006, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:01:06', NULL, NULL, NULL), (1007, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:03:38', NULL, NULL, NULL), (1008, 2, 'productivity.notes.destroy', 'navigation', 'Visited: productivity/notes/3', 'زار: productivity/notes/3', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/3\",\"method\":\"DELETE\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.destroy\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesDestroy\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:03:47', NULL, NULL, NULL), (1009, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:03:48', NULL, NULL, NULL), (1010, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:06:43', NULL, NULL, NULL), (1011, 2, 'productivity.notes.destroy', 'navigation', 'Visited: productivity/notes/3', 'زار: productivity/notes/3', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/3\",\"method\":\"DELETE\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.destroy\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesDestroy\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:06:54', NULL, NULL, NULL), (1012, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:06:55', NULL, NULL, NULL), (1013, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:07:35', NULL, NULL, NULL), (1014, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:08:21', NULL, NULL, NULL), (1015, 2, 'productivity.notes.destroy', 'navigation', 'Visited: productivity/notes/3', 'زار: productivity/notes/3', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/3\",\"method\":\"DELETE\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.destroy\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesDestroy\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:08:29', NULL, NULL, NULL), (1016, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:08:30', NULL, NULL, NULL), (1017, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:12:31', NULL, NULL, NULL), (1018, 2, 'productivity.notes.destroy', 'navigation', 'Visited: productivity/notes/3', 'زار: productivity/notes/3', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/3\",\"method\":\"DELETE\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.destroy\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesDestroy\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:12:39', NULL, NULL, NULL), (1019, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:12:41', NULL, NULL, NULL), (1020, 2, 'productivity.notes.pin', 'navigation', 'Visited: productivity/notes/2/pin', 'زار: productivity/notes/2/pin', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/2\\/pin\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.pin\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesTogglePin\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:12:48', NULL, NULL, NULL), (1021, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:12:49', NULL, NULL, NULL), (1022, 2, 'productivity.notes.store', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:13:01', NULL, NULL, NULL), (1023, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:13:02', NULL, NULL, NULL), (1024, 2, 'productivity.notes.update', 'navigation', 'Visited: productivity/notes/2', 'زار: productivity/notes/2', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/2\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesUpdate\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:13:15', NULL, NULL, NULL), (1025, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:13:17', NULL, NULL, NULL), (1026, 2, 'productivity.notes.update', 'navigation', 'Visited: productivity/notes/2', 'زار: productivity/notes/2', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/2\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesUpdate\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:13:28', NULL, NULL, NULL), (1027, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:13:29', NULL, NULL, NULL), (1028, 2, 'productivity.notes.archive', 'navigation', 'Visited: productivity/notes/4/archive', 'زار: productivity/notes/4/archive', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\\/4\\/archive\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.archive\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesArchive\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:13:44', NULL, NULL, NULL), (1029, 2, 'productivity.notes.index', 'navigation', 'Visited: productivity/notes', 'زار: productivity/notes', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.notes.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@notesIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:13:46', NULL, NULL, NULL), (1030, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:13:54', NULL, NULL, NULL), (1031, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:17:30', NULL, NULL, NULL), (1032, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:17:37', NULL, NULL, NULL), (1033, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:18:36', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1034, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:18:53', NULL, NULL, NULL), (1035, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:20:18', NULL, NULL, NULL), (1036, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:21:56', NULL, NULL, NULL), (1037, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:22:07', NULL, NULL, NULL), (1038, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:22:43', NULL, NULL, NULL), (1039, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:23:34', NULL, NULL, NULL), (1040, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:24:06', NULL, NULL, NULL), (1041, 2, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=yellow\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:24:12', NULL, NULL, NULL), (1042, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:25:12', NULL, NULL, NULL), (1043, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:27:15', NULL, NULL, NULL), (1044, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:27:40', NULL, NULL, NULL), (1045, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/notes\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:27:55', NULL, NULL, NULL), (1046, 2, 'productivity.todos.store', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:28:14', NULL, NULL, NULL), (1047, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:28:15', NULL, NULL, NULL), (1048, 2, 'productivity.todos.store', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:28:48', NULL, NULL, NULL), (1049, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:28:49', NULL, NULL, NULL), (1050, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:28:56', NULL, NULL, NULL), (1051, 2, 'productivity.todos.store', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:29:11', NULL, NULL, NULL), (1052, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:29:12', NULL, NULL, NULL), (1053, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:29:17', NULL, NULL, NULL), (1054, 2, 'productivity.todos.store', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:29:35', NULL, NULL, NULL), (1055, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:29:36', NULL, NULL, NULL), (1056, 2, 'productivity.todos.store', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:29:50', NULL, NULL, NULL), (1057, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:29:51', NULL, NULL, NULL), (1058, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:31:06', NULL, NULL, NULL), (1059, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:33:40', NULL, NULL, NULL), (1060, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:34:02', NULL, NULL, NULL), (1061, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:34:58', NULL, NULL, NULL), (1062, 2, 'productivity.todos.status', 'navigation', 'Visited: productivity/todos/2/status', 'زار: productivity/todos/2/status', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\\/2\\/status\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.status\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosStatus\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:35:05', NULL, NULL, NULL), (1063, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:35:06', NULL, NULL, NULL), (1064, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:36:29', NULL, NULL, NULL), (1065, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:38:40', NULL, NULL, NULL), (1066, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:38:46', NULL, NULL, NULL), (1067, 2, 'productivity.todos.index', 'navigation', 'Visited: productivity/todos', 'زار: productivity/todos', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.todos.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@todosIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:39:02', NULL, NULL, NULL), (1068, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:39:20', NULL, NULL, NULL), (1069, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:41:16', NULL, NULL, NULL), (1070, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:42:46', NULL, NULL, NULL), (1071, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:44:24', NULL, NULL, NULL), (1072, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:44:33', NULL, NULL, NULL), (1073, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:45:38', NULL, NULL, NULL), (1074, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:47:18', NULL, NULL, NULL), (1075, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:47:40', NULL, NULL, NULL), (1076, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/todos\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:47:51', NULL, NULL, NULL), (1077, 2, 'productivity.calendar.store', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.calendar.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:48:15', NULL, NULL, NULL), (1078, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:48:17', NULL, NULL, NULL), (1079, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=3&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:48:25', NULL, NULL, NULL), (1080, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=3&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:48:31', NULL, NULL, NULL), (1081, 2, 'productivity.calendar.store', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:48:53', NULL, NULL, NULL), (1082, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:48:54', NULL, NULL, NULL), (1083, 2, 'productivity.calendar.destroy', 'navigation', 'Visited: productivity/calendar/1', 'زار: productivity/calendar/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\\/1\",\"method\":\"DELETE\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.destroy\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarDestroy\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:49:28', NULL, NULL, NULL), (1084, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:49:29', NULL, NULL, NULL), (1085, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:51:28', NULL, NULL, NULL), (1086, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:52:24', NULL, NULL, NULL), (1087, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:53:13', NULL, NULL, NULL), (1088, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:55:38', NULL, NULL, NULL), (1089, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:58:13', NULL, NULL, NULL), (1090, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 21:58:47', NULL, NULL, NULL), (1091, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:00:28', NULL, NULL, NULL), (1092, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:01:05', NULL, NULL, NULL), (1093, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:02:19', NULL, NULL, NULL), (1094, 2, 'productivity.calendar.destroy', 'navigation', 'Visited: productivity/calendar/1', 'زار: productivity/calendar/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\\/1\",\"method\":\"DELETE\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.destroy\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarDestroy\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:02:30', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1095, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:02:31', NULL, NULL, NULL), (1096, 2, 'productivity.calendar.store', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:02:54', NULL, NULL, NULL), (1097, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:02:55', NULL, NULL, NULL), (1098, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=3&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:03:03', NULL, NULL, NULL), (1099, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=3&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:03:08', NULL, NULL, NULL), (1100, 2, 'productivity.calendar.store', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:03:34', NULL, NULL, NULL), (1101, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:03:35', NULL, NULL, NULL), (1102, 2, 'productivity.calendar.store', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:04:03', NULL, NULL, NULL), (1103, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:04:04', NULL, NULL, NULL), (1104, 2, 'productivity.calendar.update', 'navigation', 'Visited: productivity/calendar/2', 'زار: productivity/calendar/2', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\\/2\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarUpdate\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:04:21', NULL, NULL, NULL), (1105, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:04:22', NULL, NULL, NULL), (1106, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:10:18', NULL, NULL, NULL), (1107, 2, 'productivity.calendar.store', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:10:41', NULL, NULL, NULL), (1108, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:10:42', NULL, NULL, NULL), (1109, 2, 'productivity.calendar.store', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarStore\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:11:25', NULL, NULL, NULL), (1110, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:11:26', NULL, NULL, NULL), (1111, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:13:06', NULL, NULL, NULL), (1112, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:15:25', NULL, NULL, NULL), (1113, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:16:59', NULL, NULL, NULL), (1114, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:17:16', NULL, NULL, NULL), (1115, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:20:20', NULL, NULL, NULL), (1116, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:20:48', NULL, NULL, NULL), (1117, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:21:19', NULL, NULL, NULL), (1118, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:21:52', NULL, NULL, NULL), (1119, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:22:07', NULL, NULL, NULL), (1120, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:22:12', NULL, NULL, NULL), (1121, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:22:20', NULL, NULL, NULL), (1122, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:22:23', NULL, NULL, NULL), (1123, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:23:41', NULL, NULL, NULL), (1124, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:24:27', NULL, NULL, NULL), (1125, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:24:39', NULL, NULL, NULL), (1126, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:24:46', NULL, NULL, NULL), (1127, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:25:25', NULL, NULL, NULL), (1128, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:25:50', NULL, NULL, NULL), (1129, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:25:51', NULL, NULL, NULL), (1130, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:26:11', NULL, NULL, NULL), (1131, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:26:53', NULL, NULL, NULL), (1132, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:27:42', NULL, NULL, NULL), (1133, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:28:23', NULL, NULL, NULL), (1134, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:29:12', NULL, NULL, NULL), (1135, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:29:52', NULL, NULL, NULL), (1136, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:30:55', NULL, NULL, NULL), (1137, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:31:03', NULL, NULL, NULL), (1138, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:31:20', NULL, NULL, NULL), (1139, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:32:34', NULL, NULL, NULL), (1140, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:34:26', NULL, NULL, NULL), (1141, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:34:42', NULL, NULL, NULL), (1142, 2, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:34:48', NULL, NULL, NULL), (1143, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:35:46', NULL, NULL, NULL), (1144, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:36:24', NULL, NULL, NULL), (1145, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:36:38', NULL, NULL, NULL), (1146, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:36:48', NULL, NULL, NULL), (1147, 2, 'productivity.calendar.index', 'navigation', 'Visited: productivity/calendar', 'زار: productivity/calendar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar?month=2&year=2026\",\"route_name\":\"productivity.calendar.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@calendarIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:36:53', NULL, NULL, NULL), (1148, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:37:03', NULL, NULL, NULL), (1149, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:38:48', NULL, NULL, NULL), (1150, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:39:48', NULL, NULL, NULL), (1151, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:41:14', NULL, NULL, NULL), (1152, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:42:14', NULL, NULL, NULL), (1153, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:42:49', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1154, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:45:18', NULL, NULL, NULL), (1155, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:45:24', NULL, NULL, NULL), (1156, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:46:19', NULL, NULL, NULL), (1157, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:47:01', NULL, NULL, NULL), (1158, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:48:16', NULL, NULL, NULL), (1159, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:48:22', NULL, NULL, NULL), (1160, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:48:38', NULL, NULL, NULL), (1161, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/calendar\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"knF1yaKMguev86AVuqCz0Lwbmyy1cfLvfDloOul9\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-14 22:54:08', NULL, NULL, NULL), (1162, 2, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 08:20:36', NULL, NULL, NULL), (1163, 2, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 08:20:36', NULL, NULL, NULL), (1164, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 08:20:37', NULL, NULL, NULL), (1165, 2, 'productivity.kanban.index', 'navigation', 'Visited: productivity/kanban', 'زار: productivity/kanban', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/productivity\\/kanban\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"productivity.kanban.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProductivityController@kanbanIndex\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 08:20:49', NULL, NULL, NULL), (1166, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 08:59:16', NULL, NULL, NULL), (1167, 2, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:02:28', NULL, NULL, NULL), (1168, 2, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:03:01', NULL, NULL, NULL), (1169, 2, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:03:15', NULL, NULL, NULL), (1170, 2, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:03:21', NULL, NULL, NULL), (1171, 2, 'teacher.assessments.index', 'teacher', 'Visited: teacher/assessments', 'زار: teacher/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"route_name\":\"teacher.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@teacherIndex\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:03:25', NULL, NULL, NULL), (1172, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:03:39', NULL, NULL, NULL), (1173, 2, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:03:43', NULL, NULL, NULL), (1174, 2, 'teacher.messages.compose', 'teacher', 'Visited: teacher/messages/compose', 'زار: teacher/messages/compose', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/compose\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.compose\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@compose\",\"session_id\":\"IlMs6A2llPNHoLU9dLeBYkSmz1YGta7EfJyjjS4T\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:03:51', NULL, NULL, NULL), (1175, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"b8Wjq5B2Yqvmwu1kIZWG8rb74LPYHmy37OMiobm4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:05:41', NULL, NULL, NULL), (1176, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"b8Wjq5B2Yqvmwu1kIZWG8rb74LPYHmy37OMiobm4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:05:43', NULL, NULL, NULL), (1177, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"b8Wjq5B2Yqvmwu1kIZWG8rb74LPYHmy37OMiobm4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:05:44', NULL, NULL, NULL), (1178, 1, 'admin.course-offerings.index', 'admin', 'Visited: admin/course-offerings', 'زار: admin/course-offerings', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/course-offerings\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.course-offerings.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\CourseOfferingController@index\",\"session_id\":\"b8Wjq5B2Yqvmwu1kIZWG8rb74LPYHmy37OMiobm4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:06:22', NULL, NULL, NULL), (1179, 6, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:08:03', NULL, NULL, NULL), (1180, 6, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:08:05', NULL, NULL, NULL), (1181, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:08:09', NULL, NULL, NULL), (1182, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:09:15', NULL, NULL, NULL), (1183, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:10:26', NULL, NULL, NULL), (1184, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:13:24', NULL, NULL, NULL), (1185, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:15:08', NULL, NULL, NULL), (1186, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:18:11', NULL, NULL, NULL), (1187, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:19:56', NULL, NULL, NULL), (1188, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:27:15', NULL, NULL, NULL), (1189, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:27:23', NULL, NULL, NULL), (1190, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:27:34', NULL, NULL, NULL), (1191, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:27:43', NULL, NULL, NULL), (1192, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:27:48', NULL, NULL, NULL), (1193, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:28:18', NULL, NULL, NULL), (1194, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:30:48', NULL, NULL, NULL), (1195, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:42:47', NULL, NULL, NULL), (1196, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:54:05', NULL, NULL, NULL), (1197, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:54:17', NULL, NULL, NULL), (1198, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 09:57:02', NULL, NULL, NULL), (1199, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 10:37:00', NULL, NULL, NULL), (1200, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 10:50:37', NULL, NULL, NULL), (1201, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 10:52:05', NULL, NULL, NULL), (1202, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 10:55:42', NULL, NULL, NULL), (1203, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 10:55:59', NULL, NULL, NULL), (1204, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 10:56:29', NULL, NULL, NULL), (1205, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 10:56:47', NULL, NULL, NULL), (1206, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 10:58:32', NULL, NULL, NULL), (1207, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 10:58:42', NULL, NULL, NULL), (1208, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:01:45', NULL, NULL, NULL), (1209, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:05:27', NULL, NULL, NULL), (1210, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:07:04', NULL, NULL, NULL), (1211, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:07:33', NULL, NULL, NULL), (1212, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:08:13', NULL, NULL, NULL), (1213, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:08:56', NULL, NULL, NULL), (1214, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/6', 'زار: teacher/my-courses/6', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/6\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:09:10', NULL, NULL, NULL), (1215, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/2', 'زار: teacher/my-courses/2', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:09:17', NULL, NULL, NULL), (1216, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:09:24', NULL, NULL, NULL), (1217, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:09:46', NULL, NULL, NULL), (1218, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:10:15', NULL, NULL, NULL), (1219, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:19:19', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1220, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/2', 'زار: teacher/my-courses/2', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:19:25', NULL, NULL, NULL), (1221, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/6', 'زار: teacher/my-courses/6', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/6\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:19:28', NULL, NULL, NULL), (1222, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:19:34', NULL, NULL, NULL), (1223, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:19:36', NULL, NULL, NULL), (1224, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:19:41', NULL, NULL, NULL), (1225, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:19:52', NULL, NULL, NULL), (1226, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:23:26', NULL, NULL, NULL), (1227, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:26:36', NULL, NULL, NULL), (1228, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:28:00', NULL, NULL, NULL), (1229, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:29:28', NULL, NULL, NULL), (1230, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:29:44', NULL, NULL, NULL), (1231, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:30:35', NULL, NULL, NULL), (1232, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:32:19', NULL, NULL, NULL), (1233, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:32:24', NULL, NULL, NULL), (1234, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:34:02', NULL, NULL, NULL), (1235, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:35:06', NULL, NULL, NULL), (1236, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:39:01', NULL, NULL, NULL), (1237, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:41:11', NULL, NULL, NULL), (1238, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:42:05', NULL, NULL, NULL), (1239, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:43:28', NULL, NULL, NULL), (1240, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:43:39', NULL, NULL, NULL), (1241, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:43:46', NULL, NULL, NULL), (1242, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:47:43', NULL, NULL, NULL), (1243, 6, 'teacher.attendance.create', 'teacher', 'Visited: teacher/attendance/create', 'زار: teacher/attendance/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.attendance.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@create\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:47:55', NULL, NULL, NULL), (1244, 6, 'teacher.attendance.create', 'teacher', 'Visited: teacher/attendance/create', 'زار: teacher/attendance/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.attendance.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@create\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:49:45', NULL, NULL, NULL), (1245, 6, 'teacher.attendance.create', 'teacher', 'Visited: teacher/attendance/create', 'زار: teacher/attendance/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1\",\"route_name\":\"teacher.attendance.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@create\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 11:52:21', NULL, NULL, NULL), (1246, 6, 'teacher.attendance.create', 'teacher', 'Visited: teacher/attendance/create', 'زار: teacher/attendance/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1\",\"route_name\":\"teacher.attendance.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@create\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:02:33', NULL, NULL, NULL), (1247, 6, 'teacher.attendance.create', 'teacher', 'Visited: teacher/attendance/create', 'زار: teacher/attendance/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1\",\"route_name\":\"teacher.attendance.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@create\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:03:52', NULL, NULL, NULL), (1248, 6, 'teacher.attendance.create', 'teacher', 'Visited: teacher/attendance/create', 'زار: teacher/attendance/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/attendance\\/create?1\",\"route_name\":\"teacher.attendance.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@create\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:04:28', NULL, NULL, NULL), (1249, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:16:39', NULL, NULL, NULL), (1250, 6, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/1', 'زار: teacher/my-courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:16:44', NULL, NULL, NULL), (1251, 6, 'teacher.course-offering.attendance.index', 'teacher', 'Visited: teacher/courses/1/attendance', 'زار: teacher/courses/1/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.course-offering.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:17:01', NULL, NULL, NULL), (1252, 6, 'teacher.course-offering.attendance.index', 'teacher', 'Visited: teacher/courses/1/attendance', 'زار: teacher/courses/1/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.course-offering.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:20:29', NULL, NULL, NULL), (1253, 6, 'teacher.course-offering.attendance.index', 'teacher', 'Visited: teacher/courses/1/attendance', 'زار: teacher/courses/1/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.course-offering.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:23:13', NULL, NULL, NULL), (1254, 6, 'teacher.course-offering.attendance.index', 'teacher', 'Visited: teacher/courses/1/attendance', 'زار: teacher/courses/1/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.course-offering.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:23:22', NULL, NULL, NULL), (1255, 6, 'teacher.course-offering.attendance.index', 'teacher', 'Visited: teacher/courses/1/attendance', 'زار: teacher/courses/1/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"route_name\":\"teacher.course-offering.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 12:53:12', NULL, NULL, NULL), (1256, 6, 'teacher.course-offering.attendance.index', 'teacher', 'Visited: teacher/courses/1/attendance', 'زار: teacher/courses/1/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"route_name\":\"teacher.course-offering.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:10:29', NULL, NULL, NULL), (1257, 6, 'teacher.course-offering.attendance.index', 'teacher', 'Visited: teacher/courses/1/attendance', 'زار: teacher/courses/1/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"route_name\":\"teacher.course-offering.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:16:04', NULL, NULL, NULL), (1258, 6, 'teacher.course-offering.attendance.reports', 'teacher', 'Visited: teacher/courses/1/attendance/reports', 'زار: teacher/courses/1/attendance/reports', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\\/reports\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"route_name\":\"teacher.course-offering.attendance.reports\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@reports\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:16:13', NULL, NULL, NULL), (1259, 6, 'teacher.course-offering.attendance.index', 'teacher', 'Visited: teacher/courses/1/attendance', 'زار: teacher/courses/1/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\\/reports\",\"route_name\":\"teacher.course-offering.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:16:45', NULL, NULL, NULL), (1260, 6, 'teacher.course-offering.attendance.summary', 'teacher', 'Visited: teacher/courses/1/attendance/summary', 'زار: teacher/courses/1/attendance/summary', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\\/summary\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"route_name\":\"teacher.course-offering.attendance.summary\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@summary\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:16:50', NULL, NULL, NULL), (1261, 6, 'teacher.course-offering.assessments.create', 'teacher', 'Visited: teacher/courses/1/assessments/create', 'زار: teacher/courses/1/assessments/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/assessments\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.course-offering.assessments.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@create\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:17:12', NULL, NULL, NULL), (1262, 6, 'teacher.course-offering.materials.create', 'teacher', 'Visited: teacher/courses/1/materials/create', 'زار: teacher/courses/1/materials/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/materials\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.course-offering.materials.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\CourseMaterialController@create\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:17:26', NULL, NULL, NULL), (1263, 6, 'teacher.course-offering.grades.gradebook', 'teacher', 'Visited: teacher/courses/1/grades/gradebook', 'زار: teacher/courses/1/grades/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/grades\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/1\",\"route_name\":\"teacher.course-offering.grades.gradebook\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@gradebook\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:17:32', NULL, NULL, NULL), (1264, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:17:46', NULL, NULL, NULL), (1265, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:35:23', NULL, NULL, NULL), (1266, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:35:30', NULL, NULL, NULL), (1267, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:37:38', NULL, NULL, NULL), (1268, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 14:37:40', NULL, NULL, NULL), (1269, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:09:41', NULL, NULL, NULL), (1270, 6, 'teacher.course-offering.attendance.index', 'teacher', 'Visited: teacher/courses/1/attendance', 'زار: teacher/courses/1/attendance', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/1\\/attendance\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.course-offering.attendance.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AttendanceController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:09:46', NULL, NULL, NULL), (1271, 6, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:09:52', NULL, NULL, NULL), (1272, 6, 'teacher.assessments.index', 'teacher', 'Visited: teacher/assessments', 'زار: teacher/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"route_name\":\"teacher.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@teacherIndex\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:09:56', NULL, NULL, NULL), (1273, 6, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:10:00', NULL, NULL, NULL), (1274, 6, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:10:05', NULL, NULL, NULL), (1275, 6, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:10:10', NULL, NULL, NULL), (1276, 6, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:18:53', NULL, NULL, NULL), (1277, 6, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:30:30', NULL, NULL, NULL), (1278, 6, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 15:30:38', NULL, NULL, NULL), (1279, 6, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 16:13:06', NULL, NULL, NULL), (1280, 6, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 16:22:57', NULL, NULL, NULL), (1281, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 16:23:04', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1282, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 16:46:33', NULL, NULL, NULL), (1283, 6, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 16:46:37', NULL, NULL, NULL), (1284, 6, 'teacher.assessments.index', 'teacher', 'Visited: teacher/assessments', 'زار: teacher/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"route_name\":\"teacher.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@teacherIndex\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 16:46:40', NULL, NULL, NULL), (1285, 6, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 16:46:44', NULL, NULL, NULL), (1286, 6, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:02:14', NULL, NULL, NULL), (1287, 6, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:05:00', NULL, NULL, NULL), (1288, 6, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:05:39', NULL, NULL, NULL), (1289, 6, 'teacher.announcements.index', 'teacher', 'Visited: teacher/announcements', 'زار: teacher/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AnnouncementController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:07:29', NULL, NULL, NULL), (1290, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/announcements\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:07:35', NULL, NULL, NULL), (1291, 6, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:07:53', NULL, NULL, NULL), (1292, 6, 'teacher.gradebook.index', 'teacher', 'Visited: teacher/gradebook', 'زار: teacher/gradebook', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.gradebook.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MarkController@teacherGradebook\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:08:03', NULL, NULL, NULL), (1293, 6, 'teacher.assessments.index', 'teacher', 'Visited: teacher/assessments', 'زار: teacher/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/gradebook\",\"route_name\":\"teacher.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@teacherIndex\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:08:07', NULL, NULL, NULL), (1294, 6, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:08:10', NULL, NULL, NULL), (1295, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:09:02', NULL, NULL, NULL), (1296, 6, 'teacher.messages.index', 'teacher', 'Visited: teacher/messages', 'زار: teacher/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:09:25', NULL, NULL, NULL), (1297, 6, 'teacher.messages.compose', 'teacher', 'Visited: teacher/messages/compose', 'زار: teacher/messages/compose', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\\/compose\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.messages.compose\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MessageController@compose\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:09:29', NULL, NULL, NULL), (1298, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:09:59', NULL, NULL, NULL), (1299, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:14:03', NULL, NULL, NULL), (1300, 6, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/messages\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"lcdMLDwUFl5e2hmr6rQ9ewHndgWQnjY8PSpQ16Yp\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:14:23', NULL, NULL, NULL), (1301, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:14:40', NULL, NULL, NULL), (1302, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:14:41', NULL, NULL, NULL), (1303, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:14:43', NULL, NULL, NULL), (1304, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:16:34', NULL, NULL, NULL), (1305, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:19:11', NULL, NULL, NULL), (1306, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:22:15', NULL, NULL, NULL), (1307, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:23:10', NULL, NULL, NULL), (1308, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:25:30', NULL, NULL, NULL), (1309, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:25:39', NULL, NULL, NULL), (1310, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:25:57', NULL, NULL, NULL), (1311, 1, 'admin.users.toggle-status', 'admin', 'Visited: admin/users/21/toggle-status', 'زار: admin/users/21/toggle-status', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/21\\/toggle-status\",\"method\":\"PATCH\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.toggle-status\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@toggleStatus\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:26:19', NULL, NULL, NULL), (1312, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:26:20', NULL, NULL, NULL), (1313, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:26:39', NULL, NULL, NULL), (1314, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:26:54', NULL, NULL, NULL), (1315, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:27:07', NULL, NULL, NULL), (1316, 1, 'admin.enrollments.index', 'admin', 'Visited: admin/enrollments', 'زار: admin/enrollments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.enrollments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\EnrollmentController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:27:26', NULL, NULL, NULL), (1317, 1, 'admin.competencies.index', 'admin', 'Visited: admin/competencies', 'زار: admin/competencies', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/competencies\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/enrollments\",\"route_name\":\"admin.competencies.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\CompetencyController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:27:32', NULL, NULL, NULL), (1318, 1, 'admin.assessment-types.index', 'admin', 'Visited: admin/assessment-types', 'زار: admin/assessment-types', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/assessment-types\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/competencies\",\"route_name\":\"admin.assessment-types.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AssessmentTypeController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:27:38', NULL, NULL, NULL), (1319, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/assessment-types\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:27:40', NULL, NULL, NULL), (1320, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:27:47', NULL, NULL, NULL), (1321, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:27:54', NULL, NULL, NULL), (1322, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:28:05', NULL, NULL, NULL), (1323, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:31:39', NULL, NULL, NULL), (1324, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:32:52', NULL, NULL, NULL), (1325, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:33:08', NULL, NULL, NULL), (1326, 1, 'admin.users.show', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:33:45', NULL, NULL, NULL), (1327, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:33:57', NULL, NULL, NULL), (1328, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:36:40', NULL, NULL, NULL), (1329, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:36:48', NULL, NULL, NULL), (1330, 1, 'admin.users.show', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:37:12', NULL, NULL, NULL), (1331, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:37:29', NULL, NULL, NULL), (1332, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:39:46', NULL, NULL, NULL), (1333, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:42:09', NULL, NULL, NULL), (1334, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:49:33', NULL, NULL, NULL), (1335, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 17:50:05', NULL, NULL, NULL), (1336, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:01:12', NULL, NULL, NULL), (1337, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:10:48', NULL, NULL, NULL), (1338, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:11:33', NULL, NULL, NULL), (1339, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:23:07', NULL, NULL, NULL), (1340, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:23:27', NULL, NULL, NULL), (1341, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:32:03', NULL, NULL, NULL), (1342, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:32:10', NULL, NULL, NULL), (1343, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:32:12', NULL, NULL, NULL), (1344, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:45:06', NULL, NULL, NULL), (1345, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:45:28', NULL, NULL, NULL), (1346, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:45:29', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1347, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:45:33', NULL, NULL, NULL), (1348, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:45:34', NULL, NULL, NULL), (1349, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:49:50', NULL, NULL, NULL), (1350, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:52:31', NULL, NULL, NULL), (1351, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:57:58', NULL, NULL, NULL), (1352, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:58:03', NULL, NULL, NULL), (1353, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:58:03', NULL, NULL, NULL), (1354, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:58:14', NULL, NULL, NULL), (1355, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:58:14', NULL, NULL, NULL), (1356, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:58:21', NULL, NULL, NULL), (1357, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 18:58:21', NULL, NULL, NULL), (1358, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:00:55', NULL, NULL, NULL), (1359, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:01:03', NULL, NULL, NULL), (1360, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:01:07', NULL, NULL, NULL), (1361, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:01:15', NULL, NULL, NULL), (1362, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:01:15', NULL, NULL, NULL), (1363, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:05:39', NULL, NULL, NULL), (1364, 1, 'language.switch', 'navigation', 'Visited: language/ar', 'زار: language/ar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/language\\/ar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"language.switch\",\"controller\":\"Closure\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:09:06', NULL, NULL, NULL), (1365, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:09:06', NULL, NULL, NULL), (1366, 1, 'language.switch', 'navigation', 'Visited: language/ar', 'زار: language/ar', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/language\\/ar\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"language.switch\",\"controller\":\"Closure\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:09:11', NULL, NULL, NULL), (1367, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:09:12', NULL, NULL, NULL), (1368, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:09:24', NULL, NULL, NULL), (1369, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:09:30', NULL, NULL, NULL), (1370, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:09:31', NULL, NULL, NULL), (1371, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:10:37', NULL, NULL, NULL), (1372, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:10:46', NULL, NULL, NULL), (1373, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:10:46', NULL, NULL, NULL), (1374, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:11:30', NULL, NULL, NULL), (1375, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:11:30', NULL, NULL, NULL), (1376, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:15:20', NULL, NULL, NULL), (1377, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:15:34', NULL, NULL, NULL), (1378, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:15:35', NULL, NULL, NULL), (1379, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:15:42', NULL, NULL, NULL), (1380, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:15:42', NULL, NULL, NULL), (1381, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:18:45', NULL, NULL, NULL), (1382, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:19:02', NULL, NULL, NULL), (1383, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:19:03', NULL, NULL, NULL), (1384, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:20:32', NULL, NULL, NULL), (1385, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:20:42', NULL, NULL, NULL), (1386, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:20:49', NULL, NULL, NULL), (1387, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:20:50', NULL, NULL, NULL), (1388, 1, 'admin.announcements.create', 'admin', 'Visited: admin/announcements/create', 'زار: admin/announcements/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:32:40', NULL, NULL, NULL), (1389, 1, 'admin.announcements.store', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:33:05', NULL, NULL, NULL), (1390, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:33:05', NULL, NULL, NULL), (1391, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/create\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:35:47', NULL, NULL, NULL), (1392, 1, 'admin.announcements.edit', 'admin', 'Visited: admin/announcements/3/edit', 'زار: admin/announcements/3/edit', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/3\\/edit\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.announcements.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@edit\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:35:51', NULL, NULL, NULL), (1393, 1, 'admin.announcements.update', 'admin', 'Visited: admin/announcements/3', 'زار: admin/announcements/3', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/3\",\"method\":\"PUT\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/3\\/edit\",\"route_name\":\"admin.announcements.update\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@update\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:36:08', NULL, NULL, NULL), (1394, 1, 'admin.announcements.index', 'admin', 'Visited: admin/announcements', 'زار: admin/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\\/3\\/edit\",\"route_name\":\"admin.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\AnnouncementController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:36:08', NULL, NULL, NULL), (1395, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:37:45', NULL, NULL, NULL), (1396, 1, 'admin.users.show', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@show\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:37:49', NULL, NULL, NULL), (1397, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:43:11', NULL, NULL, NULL), (1398, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:50:00', NULL, NULL, NULL), (1399, 1, 'admin.users.import.process', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import.process\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@import\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:54:58', NULL, NULL, NULL), (1400, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:54:58', NULL, NULL, NULL), (1401, 1, 'admin.users.import.process', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import.process\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@import\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:56:01', NULL, NULL, NULL), (1402, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:56:01', NULL, NULL, NULL), (1403, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:57:57', NULL, NULL, NULL), (1404, 1, 'admin.users.import.process', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import.process\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@import\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:58:07', NULL, NULL, NULL), (1405, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 19:58:07', NULL, NULL, NULL), (1406, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:08:36', NULL, NULL, NULL), (1407, 1, 'admin.users.import.process', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import.process\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@import\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:09:09', NULL, NULL, NULL), (1408, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:09:10', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1409, 1, 'admin.users.import.process', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import.process\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@import\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:09:45', NULL, NULL, NULL), (1410, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:09:45', NULL, NULL, NULL), (1411, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:09:57', NULL, NULL, NULL), (1412, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:10:54', NULL, NULL, NULL), (1413, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:14:15', NULL, NULL, NULL), (1414, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:14:19', NULL, NULL, NULL), (1415, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:14:43', NULL, NULL, NULL), (1416, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/announcements\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:22:17', NULL, NULL, NULL), (1417, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:22:20', NULL, NULL, NULL), (1418, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:22:44', NULL, NULL, NULL), (1419, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:25:21', NULL, NULL, NULL), (1420, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:25:30', NULL, NULL, NULL), (1421, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:27:24', NULL, NULL, NULL), (1422, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:28:44', NULL, NULL, NULL), (1423, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:29:05', NULL, NULL, NULL), (1424, 1, 'admin.users.import', 'admin', 'Visited: admin/users/import', 'زار: admin/users/import', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/import\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.import\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@showImportForm\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:29:11', NULL, NULL, NULL), (1425, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:29:16', NULL, NULL, NULL), (1426, 1, 'admin.users.store', 'admin', 'Visited: admin/users', 'زار: admin/users', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:29:24', NULL, NULL, NULL), (1427, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:29:25', NULL, NULL, NULL), (1428, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:33:54', NULL, NULL, NULL), (1429, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:34:17', NULL, NULL, NULL), (1430, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:38:19', NULL, NULL, NULL), (1431, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:38:37', NULL, NULL, NULL), (1432, 1, 'admin.users.store', 'admin', 'Visited: admin/users', 'زار: admin/users', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:38:46', NULL, NULL, NULL), (1433, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:38:46', NULL, NULL, NULL), (1434, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:39:17', NULL, NULL, NULL), (1435, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:39:27', NULL, NULL, NULL), (1436, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:42:05', NULL, NULL, NULL), (1437, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:47:13', NULL, NULL, NULL), (1438, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:48:23', NULL, NULL, NULL), (1439, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:48:29', NULL, NULL, NULL), (1440, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 20:52:13', NULL, NULL, NULL), (1441, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:13:29', NULL, NULL, NULL), (1442, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:16:42', NULL, NULL, NULL), (1443, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:20:45', NULL, NULL, NULL), (1444, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:22:16', NULL, NULL, NULL), (1445, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:23:16', NULL, NULL, NULL), (1446, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:25:00', NULL, NULL, NULL), (1447, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:30:15', NULL, NULL, NULL), (1448, 1, 'admin.users.store', 'admin', 'Visited: admin/users', 'زار: admin/users', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:31:00', NULL, NULL, NULL), (1449, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:31:02', NULL, NULL, NULL), (1450, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:36:45', NULL, NULL, NULL), (1451, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:37:14', NULL, NULL, NULL), (1452, 1, 'admin.users.store', 'admin', 'Visited: admin/users', 'زار: admin/users', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@store\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:37:57', NULL, NULL, NULL), (1453, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:37:59', NULL, NULL, NULL), (1454, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:40:09', NULL, NULL, NULL), (1455, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:44:02', NULL, NULL, NULL), (1456, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:46:14', NULL, NULL, NULL), (1457, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:49:33', NULL, NULL, NULL), (1458, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:51:01', NULL, NULL, NULL), (1459, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:53:44', NULL, NULL, NULL), (1460, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:55:09', NULL, NULL, NULL), (1461, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:57:13', NULL, NULL, NULL), (1462, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:57:32', NULL, NULL, NULL), (1463, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:58:36', NULL, NULL, NULL), (1464, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 21:59:58', NULL, NULL, NULL), (1465, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:05:43', NULL, NULL, NULL), (1466, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"dP7rXHhkCX2uScDnsst9Mdx7kG6mACAqYNNHpY1Q\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:11:02', NULL, NULL, NULL), (1467, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:17:12', NULL, NULL, NULL), (1468, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:17:13', NULL, NULL, NULL), (1469, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:17:15', NULL, NULL, NULL), (1470, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:17:26', NULL, NULL, NULL), (1471, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:17:29', NULL, NULL, NULL), (1472, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:18:13', NULL, NULL, NULL), (1473, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=yellow\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:18:19', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1474, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:18:35', NULL, NULL, NULL), (1475, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:21:08', NULL, NULL, NULL), (1476, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"YUkZFVP82RdfR0wiqgfczg4pV1n0ixBWYSnBfqd4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:24:35', NULL, NULL, NULL), (1477, 5, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:28', NULL, NULL, NULL), (1478, 5, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:29', NULL, NULL, NULL), (1479, 5, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:31', NULL, NULL, NULL), (1480, 5, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:32', NULL, NULL, NULL), (1481, 5, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:33', NULL, NULL, NULL), (1482, 5, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:34', NULL, NULL, NULL), (1483, 5, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:35', NULL, NULL, NULL), (1484, 5, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:36', NULL, NULL, NULL), (1485, 5, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:37', NULL, NULL, NULL), (1486, 5, 'teacher.dashboard', 'teacher', 'Visited: teacher/dashboard', 'زار: teacher/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"teacher.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\DashboardController@index\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:29:38', NULL, NULL, NULL), (1487, 5, 'teacher.assessments.index', 'teacher', 'Visited: teacher/assessments', 'زار: teacher/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/dashboard\",\"route_name\":\"teacher.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@teacherIndex\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:31:48', NULL, NULL, NULL), (1488, 5, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/assessments\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:31:52', NULL, NULL, NULL), (1489, 5, 'teacher.my-courses.show', 'teacher', 'Visited: teacher/my-courses/2', 'زار: teacher/my-courses/2', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/2\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"route_name\":\"teacher.my-courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@show\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:31:57', NULL, NULL, NULL), (1490, 5, 'teacher.course-offering.assessments.create', 'teacher', 'Visited: teacher/courses/2/assessments/create', 'زار: teacher/courses/2/assessments/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\\/2\",\"route_name\":\"teacher.course-offering.assessments.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@create\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:32:02', NULL, NULL, NULL), (1491, 5, 'teacher.course-offering.assessments.store', 'teacher', 'Visited: teacher/courses/2/assessments', 'زار: teacher/courses/2/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/create\",\"route_name\":\"teacher.course-offering.assessments.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@store\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:32:46', NULL, NULL, NULL), (1492, 5, 'teacher.course-offering.assessments.index', 'teacher', 'Visited: teacher/courses/2/assessments', 'زار: teacher/courses/2/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/create\",\"route_name\":\"teacher.course-offering.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@index\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:32:48', NULL, NULL, NULL), (1493, 5, 'teacher.course-offering.assessments.questions.index', 'teacher', 'Visited: teacher/courses/2/assessments/1/questions', 'زار: teacher/courses/2/assessments/1/questions', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\\/questions\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\",\"route_name\":\"teacher.course-offering.assessments.questions.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@questionsIndex\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:32:52', NULL, NULL, NULL), (1494, 5, 'teacher.course-offering.assessments.questions.create', 'teacher', 'Visited: teacher/courses/2/assessments/1/questions/create', 'زار: teacher/courses/2/assessments/1/questions/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\\/questions\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\\/questions\",\"route_name\":\"teacher.course-offering.assessments.questions.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@questionCreate\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:32:56', NULL, NULL, NULL), (1495, 5, 'teacher.course-offering.assessments.questions.store', 'teacher', 'Visited: teacher/courses/2/assessments/1/questions', 'زار: teacher/courses/2/assessments/1/questions', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\\/questions\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\\/questions\\/create\",\"route_name\":\"teacher.course-offering.assessments.questions.store\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@questionStore\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:35:02', NULL, NULL, NULL), (1496, 5, 'teacher.course-offering.assessments.questions.index', 'teacher', 'Visited: teacher/courses/2/assessments/1/questions', 'زار: teacher/courses/2/assessments/1/questions', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\\/questions\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\\/questions\\/create\",\"route_name\":\"teacher.course-offering.assessments.questions.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@questionsIndex\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:35:03', NULL, NULL, NULL), (1497, 5, 'teacher.course-offering.assessments.show', 'teacher', 'Visited: teacher/courses/2/assessments/1', 'زار: teacher/courses/2/assessments/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\\/questions\",\"route_name\":\"teacher.course-offering.assessments.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\AssessmentController@show\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:35:11', NULL, NULL, NULL), (1498, 5, 'teacher.my-courses.index', 'teacher', 'Visited: teacher/my-courses', 'زار: teacher/my-courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/my-courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/teacher\\/courses\\/2\\/assessments\\/1\",\"route_name\":\"teacher.my-courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Teacher\\\\MyCourseController@index\",\"session_id\":\"7qdjm483zPgTPk4zDYncXxbaGzBBwKECVo4pqsAN\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:35:20', NULL, NULL, NULL), (1499, 10, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:36:00', NULL, NULL, NULL), (1500, 10, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:36:01', NULL, NULL, NULL), (1501, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:36:03', NULL, NULL, NULL), (1502, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:36:17', NULL, NULL, NULL), (1503, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:38:57', NULL, NULL, NULL), (1504, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:39:09', NULL, NULL, NULL), (1505, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:39:22', NULL, NULL, NULL), (1506, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:41:05', NULL, NULL, NULL), (1507, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:43:11', NULL, NULL, NULL), (1508, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:45:21', NULL, NULL, NULL), (1509, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:45:26', NULL, NULL, NULL), (1510, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:45:46', NULL, NULL, NULL), (1511, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:46:10', NULL, NULL, NULL), (1512, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:46:49', NULL, NULL, NULL), (1513, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:47:06', NULL, NULL, NULL), (1514, 10, 'student.announcements.index', 'student', 'Visited: student/announcements', 'زار: student/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/announcements?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\AnnouncementController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:47:21', NULL, NULL, NULL), (1515, 10, 'student.announcements.index', 'student', 'Visited: student/announcements', 'زار: student/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/announcements?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\AnnouncementController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:47:27', NULL, NULL, NULL), (1516, 10, 'student.materials.index', 'student', 'Visited: student/materials/1', 'زار: student/materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:47:32', NULL, NULL, NULL), (1517, 10, 'student.materials.index', 'student', 'Visited: student/materials/1', 'زار: student/materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:47:46', NULL, NULL, NULL), (1518, 10, 'student.materials.index', 'student', 'Visited: student/materials/1', 'زار: student/materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:49:38', NULL, NULL, NULL), (1519, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:58:31', NULL, NULL, NULL), (1520, 10, 'student.announcements.index', 'student', 'Visited: student/announcements', 'زار: student/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/announcements?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\AnnouncementController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:58:35', NULL, NULL, NULL), (1521, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:58:40', NULL, NULL, NULL), (1522, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:58:44', NULL, NULL, NULL), (1523, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 22:58:54', NULL, NULL, NULL), (1524, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:00:40', NULL, NULL, NULL), (1525, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:00:49', NULL, NULL, NULL), (1526, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:03:15', NULL, NULL, NULL), (1527, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:05:28', NULL, NULL, NULL), (1528, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:05:32', NULL, NULL, NULL), (1529, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:05:34', NULL, NULL, NULL), (1530, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:06:25', NULL, NULL, NULL), (1531, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:06:33', NULL, NULL, NULL), (1532, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:06:39', NULL, NULL, NULL), (1533, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:06:43', NULL, NULL, NULL), (1534, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:12:12', NULL, NULL, NULL), (1535, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:12:55', NULL, NULL, NULL), (1536, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:12:59', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1537, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:13:03', NULL, NULL, NULL), (1538, 10, 'student.discussions.index', 'student', 'Visited: student/discussions', 'زار: student/discussions', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/discussions?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.discussions.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DiscussionController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:13:06', NULL, NULL, NULL), (1539, 10, 'student.assessments.index', 'student', 'Visited: student/assessments', 'زار: student/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/assessments?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\AssessmentController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:13:09', NULL, NULL, NULL), (1540, 10, 'student.assessments.index', 'student', 'Visited: student/assessments', 'زار: student/assessments', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/assessments?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.assessments.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\AssessmentController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:13:13', NULL, NULL, NULL), (1541, 10, 'student.grades.index', 'student', 'Visited: student/grades', 'زار: student/grades', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/grades?1=\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.grades.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\GradeController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:13:18', NULL, NULL, NULL), (1542, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:13:26', NULL, NULL, NULL), (1543, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:14:39', NULL, NULL, NULL), (1544, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:15:16', NULL, NULL, NULL), (1545, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:15:22', NULL, NULL, NULL), (1546, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:15:24', NULL, NULL, NULL), (1547, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:15:27', NULL, NULL, NULL), (1548, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:16:07', NULL, NULL, NULL), (1549, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:16:10', NULL, NULL, NULL), (1550, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:17:05', NULL, NULL, NULL), (1551, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:17:08', NULL, NULL, NULL), (1552, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:17:18', NULL, NULL, NULL), (1553, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:19:29', NULL, NULL, NULL), (1554, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:19:39', NULL, NULL, NULL), (1555, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:19:43', NULL, NULL, NULL), (1556, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:19:49', NULL, NULL, NULL), (1557, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:21:48', NULL, NULL, NULL), (1558, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:21:52', NULL, NULL, NULL), (1559, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:21:58', NULL, NULL, NULL), (1560, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:22:01', NULL, NULL, NULL), (1561, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:03', NULL, NULL, NULL), (1562, 10, 'profile.edit', 'profile', 'Visited: profile', 'زار: profile', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"profile.edit\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\ProfileController@edit\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:09', NULL, NULL, NULL), (1563, 10, 'student.notifications.index', 'student', 'Visited: student/notifications', 'زار: student/notifications', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/notifications\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/profile\",\"route_name\":\"student.notifications.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\StudentNotificationController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:21', NULL, NULL, NULL), (1564, 10, 'student.enrollment.register', 'student', 'Visited: student/enrollment/register', 'زار: student/enrollment/register', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/enrollment\\/register\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/notifications\",\"route_name\":\"student.enrollment.register\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\EnrollmentController@register\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:25', NULL, NULL, NULL), (1565, 10, 'student.announcements.index', 'student', 'Visited: student/announcements', 'زار: student/announcements', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/announcements\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/enrollment\\/register\",\"route_name\":\"student.announcements.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\AnnouncementController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:29', NULL, NULL, NULL), (1566, 10, 'student.medical.index', 'student', 'Visited: student/medical', 'زار: student/medical', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/announcements\",\"route_name\":\"student.medical.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MedicalController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:32', NULL, NULL, NULL), (1567, 10, 'student.messages.index', 'student', 'Visited: student/messages', 'زار: student/messages', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.messages.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MessageController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:37', NULL, NULL, NULL), (1568, 10, 'student.messages.compose', 'student', 'Visited: student/messages/compose', 'زار: student/messages/compose', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\\/compose\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/messages\",\"route_name\":\"student.messages.compose\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\MessageController@compose\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:43', NULL, NULL, NULL), (1569, 10, 'student.courses.index', 'student', 'Visited: student/courses', 'زار: student/courses', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/medical\",\"route_name\":\"student.courses.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:55', NULL, NULL, NULL), (1570, 10, 'student.dashboard', 'student', 'Visited: student/dashboard', 'زار: student/dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\",\"route_name\":\"student.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\DashboardController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:24:59', NULL, NULL, NULL), (1571, 10, 'student.courses.show', 'student', 'Visited: student/courses/1', 'زار: student/courses/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/dashboard\",\"route_name\":\"student.courses.show\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseController@show\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:25:02', NULL, NULL, NULL), (1572, 10, 'student.course-materials.index', 'student', 'Visited: student/course-materials/1', 'زار: student/course-materials/1', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/student\\/course-materials\\/1\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/student\\/courses\\/1\",\"route_name\":\"student.course-materials.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Student\\\\CourseMaterialController@index\",\"session_id\":\"zuS18HeBW9mWRsA62iQioDPTaJ1ZT0opeHUYyB6B\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-15 23:25:06', NULL, NULL, NULL), (1573, 1, 'POST login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"POST\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":null,\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@store\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:04', NULL, NULL, NULL), (1574, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:05', NULL, NULL, NULL), (1575, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:06', NULL, NULL, NULL), (1576, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:16', NULL, NULL, NULL), (1577, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:31', NULL, NULL, NULL), (1578, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:33', NULL, NULL, NULL), (1579, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:45', NULL, NULL, NULL), (1580, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:46', NULL, NULL, NULL), (1581, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:48', NULL, NULL, NULL), (1582, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:01:54', NULL, NULL, NULL), (1583, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:02:11', NULL, NULL, NULL), (1584, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:10:27', NULL, NULL, NULL), (1585, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:13:00', NULL, NULL, NULL), (1586, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:17:13', NULL, NULL, NULL), (1587, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:23:15', NULL, NULL, NULL), (1588, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:28:03', NULL, NULL, NULL), (1589, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:28:12', NULL, NULL, NULL), (1590, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:28:28', NULL, NULL, NULL), (1591, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:28:41', NULL, NULL, NULL), (1592, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:32:17', NULL, NULL, NULL), (1593, 1, 'admin.users.index', 'admin', 'Viewed users list', 'عرض قائمة المستخدمين', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:33:38', NULL, NULL, NULL), (1594, 1, 'admin.users.create', 'admin', 'Visited: admin/users/create', 'زار: admin/users/create', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 13:33:42', NULL, NULL, NULL), (1595, 1, 'home', 'navigation', 'Visited: /', 'زار: /', '{\"url\":\"http:\\/\\/127.0.0.1:8000\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"home\",\"controller\":\"Closure\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:38:43', NULL, NULL, NULL), (1596, 1, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:38:44', NULL, NULL, NULL), (1597, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:38:44', NULL, NULL, NULL), (1598, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:38:45', NULL, NULL, NULL), (1599, 1, 'home', 'navigation', 'Visited: /', 'زار: /', '{\"url\":\"http:\\/\\/127.0.0.1:8000\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"home\",\"controller\":\"Closure\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:38:59', NULL, NULL, NULL), (1600, 1, 'login', 'auth', 'Visited: login', 'زار: login', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:38:59', NULL, NULL, NULL), (1601, 1, 'dashboard', 'navigation', 'Visited: dashboard', 'زار: dashboard', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:39:00', NULL, NULL, NULL); INSERT INTO `activity_logs` (`id`, `user_id`, `action`, `category`, `description_en`, `description_ar`, `details`, `ip_address`, `user_agent`, `occurred_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1602, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:39:00', NULL, NULL, NULL), (1603, 1, 'admin.dashboard', 'admin', 'Viewed admin dashboard', 'شاهد لوحة تحكم الإدارة', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"admin.dashboard\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\DashboardController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:39:12', NULL, NULL, NULL), (1604, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=light\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:39:23', NULL, NULL, NULL), (1605, 1, 'accessibility.set-color-scheme', 'navigation', 'Visited: accessibility/set-color-scheme', 'زار: accessibility/set-color-scheme', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-color-scheme?scheme=dark\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-color-scheme\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setColorScheme\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:39:25', NULL, NULL, NULL), (1606, 1, 'accessibility.set-accent-color', 'navigation', 'Visited: accessibility/set-accent-color', 'زار: accessibility/set-accent-color', '{\"url\":\"http:\\/\\/127.0.0.1:8000\\/accessibility\\/set-accent-color?color=emerald\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"accessibility.set-accent-color\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Shared\\\\AccessibilityController@setAccentColor\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-16 14:39:29', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `announcements` -- CREATE TABLE `announcements` ( `id` bigint(20) UNSIGNED NOT NULL, `title_en` varchar(255) NOT NULL, `title_ar` varchar(255) NOT NULL, `body_en` text DEFAULT NULL, `body_ar` text DEFAULT NULL, `type` enum('general','academic','event','urgent') NOT NULL DEFAULT 'general', `audience` enum('all','students','teachers') NOT NULL DEFAULT 'all', `scope` enum('system','faculty','department','course','offering') NOT NULL DEFAULT 'system', `target_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED NOT NULL, `published_at` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `is_pinned` tinyint(1) NOT NULL DEFAULT 0, `is_published` tinyint(1) NOT NULL DEFAULT 0, `requires_acknowledgment` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `announcements` -- INSERT INTO `announcements` (`id`, `title_en`, `title_ar`, `body_en`, `body_ar`, `type`, `audience`, `scope`, `target_id`, `created_by`, `published_at`, `expires_at`, `is_pinned`, `is_published`, `requires_acknowledgment`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'Welcome to the New Academic Year!', 'مرحباً بالعام الدراسي الجديد!', 'We are excited to welcome all students and faculty to the 2025-2026 academic year. Registration is now open.', 'يسعدنا استقبال جميع الطلاب وأعضاء هيئة التدريس في العام الدراسي 2025-2026. التسجيل مفتوح الآن.', 'general', 'all', 'system', NULL, 1, '2026-02-11 20:38:25', NULL, 1, 0, 0, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (2, 'Library Hours Update', 'تحديث مواعيد المكتبة', 'The main library will be open 24/7 during final exams week.', 'ستكون المكتبة الرئيسية مفتوحة على مدار الساعة خلال أسبوع الامتحانات النهائية.', 'general', 'all', 'system', NULL, 1, '2026-02-08 20:38:25', NULL, 0, 0, 0, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (3, 'jgug', 'vhv', 'bbjbkrrrr', 'jbjrrrrr', 'general', 'all', 'system', NULL, 1, '2026-02-14 21:00:00', NULL, 0, 1, 0, '2026-02-15 19:33:05', '2026-02-15 19:36:08', NULL); -- -------------------------------------------------------- -- -- Table structure for table `announcement_acknowledgments` -- CREATE TABLE `announcement_acknowledgments` ( `id` bigint(20) UNSIGNED NOT NULL, `announcement_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `acknowledged_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `assessments` -- CREATE TABLE `assessments` ( `id` bigint(20) UNSIGNED NOT NULL, `course_offering_id` bigint(20) UNSIGNED NOT NULL, `assessment_type_id` bigint(20) UNSIGNED NOT NULL, `title_en` varchar(255) NOT NULL, `title_ar` varchar(255) NOT NULL, `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `due_date` datetime DEFAULT NULL, `max_marks` decimal(6,2) NOT NULL DEFAULT 100.00, `weight` decimal(5,2) DEFAULT NULL, `is_published` tinyint(1) NOT NULL DEFAULT 0, `allow_late_submission` tinyint(1) NOT NULL DEFAULT 0, `is_timed` tinyint(1) NOT NULL DEFAULT 0, `quiz_duration_minutes` int(10) UNSIGNED DEFAULT NULL, `allow_multiple_attempts` tinyint(1) NOT NULL DEFAULT 0, `max_attempts` int(10) UNSIGNED DEFAULT NULL, `show_correct_answers` tinyint(1) NOT NULL DEFAULT 0, `sort_order` int(10) UNSIGNED NOT NULL DEFAULT 0, `published_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `requires_completion` tinyint(1) NOT NULL DEFAULT 0, `completion_type` enum('view','submit','manual') NOT NULL DEFAULT 'submit' COMMENT 'view=just view, submit=requires submission, manual=teacher marks' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `assessments` -- INSERT INTO `assessments` (`id`, `course_offering_id`, `assessment_type_id`, `title_en`, `title_ar`, `description_en`, `description_ar`, `due_date`, `max_marks`, `weight`, `is_published`, `allow_late_submission`, `is_timed`, `quiz_duration_minutes`, `allow_multiple_attempts`, `max_attempts`, `show_correct_answers`, `sort_order`, `published_at`, `created_at`, `updated_at`, `deleted_at`, `requires_completion`, `completion_type`) VALUES (1, 2, 4, 'test', 'testAR', 'ggg', 'bb', '2026-02-16 01:32:00', 90.00, NULL, 0, 0, 0, NULL, 0, NULL, 0, 0, NULL, '2026-02-15 22:32:46', '2026-02-15 22:32:46', NULL, 0, 'submit'); -- -------------------------------------------------------- -- -- Table structure for table `assessment_types` -- CREATE TABLE `assessment_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name_en` varchar(100) NOT NULL, `name_ar` varchar(100) NOT NULL, `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `is_graded` tinyint(1) NOT NULL DEFAULT 1, `affects_gpa` tinyint(1) NOT NULL DEFAULT 1, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `assessment_types` -- INSERT INTO `assessment_types` (`id`, `name_en`, `name_ar`, `description_en`, `description_ar`, `is_graded`, `affects_gpa`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'Quiz', 'اختبار قصير', NULL, NULL, 1, 1, NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25'), (2, 'Midterm Exam', 'امتحان منتصف الفصل', NULL, NULL, 1, 1, NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25'), (3, 'Final Exam', 'امتحان نهائي', NULL, NULL, 1, 1, NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25'), (4, 'Assignment', 'واجب', NULL, NULL, 1, 1, NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25'), (5, 'Project', 'مشروع', NULL, NULL, 1, 1, NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25'), (6, 'Participation', 'مشاركة', NULL, NULL, 1, 0, NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25'), (7, 'Attendance', 'حضور', NULL, NULL, 1, 0, NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25'); -- -------------------------------------------------------- -- -- Table structure for table `attendances` -- CREATE TABLE `attendances` ( `id` bigint(20) UNSIGNED NOT NULL, `enrollment_id` bigint(20) UNSIGNED NOT NULL, `date` date NOT NULL, `status` enum('present','absent','late','excused') NOT NULL DEFAULT 'absent', `notes` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `attendances` -- INSERT INTO `attendances` (`id`, `enrollment_id`, `date`, `status`, `notes`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (2, 1, '2026-02-10', 'excused', 'Excused absence', '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (3, 1, '2026-02-09', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (4, 1, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (5, 1, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (6, 1, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (7, 1, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (8, 1, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (9, 1, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (10, 1, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (11, 1, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (12, 1, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (13, 1, '2026-01-30', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (14, 1, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (15, 2, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (16, 2, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (17, 2, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (18, 2, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (19, 2, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (20, 2, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (21, 2, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (22, 2, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (23, 2, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (24, 2, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (25, 2, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (26, 2, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (27, 2, '2026-01-30', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (28, 2, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (29, 3, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (30, 3, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (31, 3, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (32, 3, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (33, 3, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (34, 3, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (35, 3, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (36, 3, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (37, 3, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (38, 3, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (39, 3, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (40, 3, '2026-01-31', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (41, 3, '2026-01-30', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (42, 3, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (43, 4, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (44, 4, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (45, 4, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (46, 4, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (47, 4, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (48, 4, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (49, 4, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (50, 4, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (51, 4, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (52, 4, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (53, 4, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (54, 4, '2026-01-31', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (55, 4, '2026-01-30', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (56, 4, '2026-01-29', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (57, 5, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (58, 5, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (59, 5, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (60, 5, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (61, 5, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (62, 5, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (63, 5, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (64, 5, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (65, 5, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (66, 5, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (67, 5, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (68, 5, '2026-01-31', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (69, 5, '2026-01-30', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (70, 5, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (71, 6, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (72, 6, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (73, 6, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (74, 6, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (75, 6, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (76, 6, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (77, 6, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (78, 6, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (79, 6, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (80, 6, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (81, 6, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (82, 6, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (83, 6, '2026-01-30', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (84, 6, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (85, 7, '2026-02-11', 'excused', 'Excused absence', '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (86, 7, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (87, 7, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (88, 7, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (89, 7, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (90, 7, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (91, 7, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (92, 7, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (93, 7, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (94, 7, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (95, 7, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (96, 7, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (97, 7, '2026-01-30', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (98, 7, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (99, 8, '2026-02-11', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (100, 8, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (101, 8, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (102, 8, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (103, 8, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (104, 8, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (105, 8, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (106, 8, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (107, 8, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (108, 8, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (109, 8, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (110, 8, '2026-01-31', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (111, 8, '2026-01-30', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (112, 8, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (113, 9, '2026-02-11', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (114, 9, '2026-02-10', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (115, 9, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (116, 9, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (117, 9, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (118, 9, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (119, 9, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (120, 9, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (121, 9, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (122, 9, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (123, 9, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (124, 9, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (125, 9, '2026-01-30', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (126, 9, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (127, 10, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (128, 10, '2026-02-10', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (129, 10, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (130, 10, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (131, 10, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (132, 10, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (133, 10, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (134, 10, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (135, 10, '2026-02-03', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (136, 10, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (137, 10, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (138, 10, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (139, 10, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (140, 10, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (141, 11, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (142, 11, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (143, 11, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (144, 11, '2026-02-08', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (145, 11, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (146, 11, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (147, 11, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (148, 11, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (149, 11, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (150, 11, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (151, 11, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (152, 11, '2026-01-31', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (153, 11, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (154, 11, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (155, 12, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (156, 12, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (157, 12, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (158, 12, '2026-02-08', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (159, 12, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (160, 12, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (161, 12, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (162, 12, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (163, 12, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (164, 12, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (165, 12, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (166, 12, '2026-01-31', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (167, 12, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (168, 12, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (169, 13, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (170, 13, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (171, 13, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (172, 13, '2026-02-08', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (173, 13, '2026-02-07', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (174, 13, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (175, 13, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (176, 13, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (177, 13, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (178, 13, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (179, 13, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (180, 13, '2026-01-31', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (181, 13, '2026-01-30', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (182, 13, '2026-01-29', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (183, 14, '2026-02-11', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (184, 14, '2026-02-10', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (185, 14, '2026-02-09', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (186, 14, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (187, 14, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (188, 14, '2026-02-06', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (189, 14, '2026-02-05', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (190, 14, '2026-02-04', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (191, 14, '2026-02-03', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (192, 14, '2026-02-02', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (193, 14, '2026-02-01', 'present', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (194, 14, '2026-01-31', 'late', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL), (195, 14, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (196, 14, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (197, 15, '2026-02-11', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (198, 15, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (199, 15, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (200, 15, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (201, 15, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (202, 15, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (203, 15, '2026-02-05', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (204, 15, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (205, 15, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (206, 15, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (207, 15, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (208, 15, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (209, 15, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (210, 15, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (211, 16, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (212, 16, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (213, 16, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (214, 16, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (215, 16, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (216, 16, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (217, 16, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (218, 16, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (219, 16, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (220, 16, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (221, 16, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (222, 16, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (223, 16, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (224, 16, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (225, 17, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (226, 17, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (227, 17, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (228, 17, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (229, 17, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (230, 17, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (231, 17, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (232, 17, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (233, 17, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (234, 17, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (235, 17, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (236, 17, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (237, 17, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (238, 17, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (239, 18, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (240, 18, '2026-02-10', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (241, 18, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (242, 18, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (243, 18, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (244, 18, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (245, 18, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (246, 18, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (247, 18, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (248, 18, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (249, 18, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (250, 18, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (251, 18, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (252, 18, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (253, 19, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (254, 19, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (255, 19, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (256, 19, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (257, 19, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (258, 19, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (259, 19, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (260, 19, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (261, 19, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (262, 19, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (263, 19, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (264, 19, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (265, 19, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (266, 19, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (267, 20, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (268, 20, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (269, 20, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (270, 20, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (271, 20, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (272, 20, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (273, 20, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (274, 20, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (275, 20, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (276, 20, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (277, 20, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (278, 20, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (279, 20, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (280, 20, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (281, 21, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (282, 21, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (283, 21, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (284, 21, '2026-02-08', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (285, 21, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (286, 21, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (287, 21, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (288, 21, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (289, 21, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (290, 21, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (291, 21, '2026-02-01', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (292, 21, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (293, 21, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (294, 21, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (295, 22, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (296, 22, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (297, 22, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (298, 22, '2026-02-08', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (299, 22, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (300, 22, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (301, 22, '2026-02-05', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (302, 22, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (303, 22, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (304, 22, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (305, 22, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (306, 22, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (307, 22, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (308, 22, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (309, 23, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (310, 23, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (311, 23, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (312, 23, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (313, 23, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (314, 23, '2026-02-06', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (315, 23, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (316, 23, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (317, 23, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (318, 23, '2026-02-02', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (319, 23, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (320, 23, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (321, 23, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (322, 23, '2026-01-29', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (323, 24, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (324, 24, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (325, 24, '2026-02-09', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (326, 24, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (327, 24, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (328, 24, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (329, 24, '2026-02-05', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (330, 24, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (331, 24, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (332, 24, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (333, 24, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (334, 24, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (335, 24, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (336, 24, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (337, 25, '2026-02-11', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (338, 25, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (339, 25, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (340, 25, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (341, 25, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (342, 25, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (343, 25, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (344, 25, '2026-02-04', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (345, 25, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (346, 25, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (347, 25, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (348, 25, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (349, 25, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (350, 25, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (351, 26, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (352, 26, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (353, 26, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (354, 26, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (355, 26, '2026-02-07', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (356, 26, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (357, 26, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (358, 26, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (359, 26, '2026-02-03', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (360, 26, '2026-02-02', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (361, 26, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (362, 26, '2026-01-31', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (363, 26, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (364, 26, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (365, 27, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (366, 27, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (367, 27, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (368, 27, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (369, 27, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (370, 27, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (371, 27, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (372, 27, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (373, 27, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (374, 27, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (375, 27, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (376, 27, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (377, 27, '2026-01-30', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (378, 27, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (379, 28, '2026-02-11', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (380, 28, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (381, 28, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (382, 28, '2026-02-08', 'excused', 'Excused absence', '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (383, 28, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (384, 28, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (385, 28, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (386, 28, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (387, 28, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (388, 28, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (389, 28, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (390, 28, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (391, 28, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (392, 28, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (393, 29, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (394, 29, '2026-02-10', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (395, 29, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (396, 29, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (397, 29, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (398, 29, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (399, 29, '2026-02-05', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (400, 29, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (401, 29, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (402, 29, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (403, 29, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (404, 29, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (405, 29, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (406, 29, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (407, 30, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (408, 30, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (409, 30, '2026-02-09', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (410, 30, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (411, 30, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (412, 30, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (413, 30, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (414, 30, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (415, 30, '2026-02-03', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (416, 30, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (417, 30, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (418, 30, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (419, 30, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (420, 30, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (421, 31, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (422, 31, '2026-02-10', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (423, 31, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (424, 31, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (425, 31, '2026-02-07', 'excused', 'Excused absence', '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (426, 31, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (427, 31, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (428, 31, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (429, 31, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (430, 31, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (431, 31, '2026-02-01', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (432, 31, '2026-01-31', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (433, 31, '2026-01-30', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (434, 31, '2026-01-29', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (435, 32, '2026-02-11', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (436, 32, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (437, 32, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (438, 32, '2026-02-08', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (439, 32, '2026-02-07', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (440, 32, '2026-02-06', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (441, 32, '2026-02-05', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (442, 32, '2026-02-04', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (443, 32, '2026-02-03', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (444, 32, '2026-02-02', 'present', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (445, 32, '2026-02-01', 'late', NULL, '2026-02-11 20:38:26', '2026-02-11 20:38:26', NULL), (446, 32, '2026-01-31', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (447, 32, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (448, 32, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (449, 33, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (450, 33, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (451, 33, '2026-02-09', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (452, 33, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (453, 33, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (454, 33, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (455, 33, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (456, 33, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (457, 33, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (458, 33, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (459, 33, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (460, 33, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (461, 33, '2026-01-30', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (462, 33, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (463, 34, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (464, 34, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (465, 34, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (466, 34, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (467, 34, '2026-02-07', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (468, 34, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (469, 34, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (470, 34, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (471, 34, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (472, 34, '2026-02-02', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (473, 34, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (474, 34, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (475, 34, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (476, 34, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (477, 35, '2026-02-11', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (478, 35, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (479, 35, '2026-02-09', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (480, 35, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (481, 35, '2026-02-07', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (482, 35, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (483, 35, '2026-02-05', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (484, 35, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (485, 35, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (486, 35, '2026-02-02', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (487, 35, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (488, 35, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (489, 35, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (490, 35, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (491, 36, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (492, 36, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (493, 36, '2026-02-09', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (494, 36, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (495, 36, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (496, 36, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (497, 36, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (498, 36, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (499, 36, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (500, 36, '2026-02-02', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (501, 36, '2026-02-01', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (502, 36, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (503, 36, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (504, 36, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (505, 37, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (506, 37, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (507, 37, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (508, 37, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (509, 37, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (510, 37, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (511, 37, '2026-02-05', 'excused', 'Excused absence', '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (512, 37, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (513, 37, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (514, 37, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (515, 37, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (516, 37, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (517, 37, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (518, 37, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (519, 38, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (520, 38, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (521, 38, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (522, 38, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (523, 38, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (524, 38, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (525, 38, '2026-02-05', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (526, 38, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (527, 38, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (528, 38, '2026-02-02', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (529, 38, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (530, 38, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (531, 38, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (532, 38, '2026-01-29', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (533, 39, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (534, 39, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (535, 39, '2026-02-09', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (536, 39, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (537, 39, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (538, 39, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (539, 39, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (540, 39, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (541, 39, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (542, 39, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (543, 39, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (544, 39, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL); INSERT INTO `attendances` (`id`, `enrollment_id`, `date`, `status`, `notes`, `created_at`, `updated_at`, `deleted_at`) VALUES (545, 39, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (546, 39, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (547, 40, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (548, 40, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (549, 40, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (550, 40, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (551, 40, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (552, 40, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (553, 40, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (554, 40, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (555, 40, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (556, 40, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (557, 40, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (558, 40, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (559, 40, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (560, 40, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (561, 41, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (562, 41, '2026-02-10', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (563, 41, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (564, 41, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (565, 41, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (566, 41, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (567, 41, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (568, 41, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (569, 41, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (570, 41, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (571, 41, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (572, 41, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (573, 41, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (574, 41, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (575, 42, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (576, 42, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (577, 42, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (578, 42, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (579, 42, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (580, 42, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (581, 42, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (582, 42, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (583, 42, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (584, 42, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (585, 42, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (586, 42, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (587, 42, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (588, 42, '2026-01-29', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (589, 43, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (590, 43, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (591, 43, '2026-02-09', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (592, 43, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (593, 43, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (594, 43, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (595, 43, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (596, 43, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (597, 43, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (598, 43, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (599, 43, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (600, 43, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (601, 43, '2026-01-30', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (602, 43, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (603, 44, '2026-02-11', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (604, 44, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (605, 44, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (606, 44, '2026-02-08', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (607, 44, '2026-02-07', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (608, 44, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (609, 44, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (610, 44, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (611, 44, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (612, 44, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (613, 44, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (614, 44, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (615, 44, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (616, 44, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (617, 45, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (618, 45, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (619, 45, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (620, 45, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (621, 45, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (622, 45, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (623, 45, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (624, 45, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (625, 45, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (626, 45, '2026-02-02', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (627, 45, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (628, 45, '2026-01-31', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (629, 45, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (630, 45, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (631, 46, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (632, 46, '2026-02-10', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (633, 46, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (634, 46, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (635, 46, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (636, 46, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (637, 46, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (638, 46, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (639, 46, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (640, 46, '2026-02-02', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (641, 46, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (642, 46, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (643, 46, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (644, 46, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (645, 47, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (646, 47, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (647, 47, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (648, 47, '2026-02-08', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (649, 47, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (650, 47, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (651, 47, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (652, 47, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (653, 47, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (654, 47, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (655, 47, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (656, 47, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (657, 47, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (658, 47, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (659, 48, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (660, 48, '2026-02-10', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (661, 48, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (662, 48, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (663, 48, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (664, 48, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (665, 48, '2026-02-05', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (666, 48, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (667, 48, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (668, 48, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (669, 48, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (670, 48, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (671, 48, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (672, 48, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (673, 49, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (674, 49, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (675, 49, '2026-02-09', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (676, 49, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (677, 49, '2026-02-07', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (678, 49, '2026-02-06', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (679, 49, '2026-02-05', 'late', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (680, 49, '2026-02-04', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (681, 49, '2026-02-03', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (682, 49, '2026-02-02', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (683, 49, '2026-02-01', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (684, 49, '2026-01-31', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (685, 49, '2026-01-30', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (686, 49, '2026-01-29', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (687, 50, '2026-02-11', 'present', NULL, '2026-02-11 20:38:27', '2026-02-11 20:38:27', NULL), (688, 50, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (689, 50, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (690, 50, '2026-02-08', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (691, 50, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (692, 50, '2026-02-06', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (693, 50, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (694, 50, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (695, 50, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (696, 50, '2026-02-02', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (697, 50, '2026-02-01', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (698, 50, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (699, 50, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (700, 50, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (701, 51, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (702, 51, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (703, 51, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (704, 51, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (705, 51, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (706, 51, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (707, 51, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (708, 51, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (709, 51, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (710, 51, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (711, 51, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (712, 51, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (713, 51, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (714, 51, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (715, 52, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (716, 52, '2026-02-10', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (717, 52, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (718, 52, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (719, 52, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (720, 52, '2026-02-06', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (721, 52, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (722, 52, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (723, 52, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (724, 52, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (725, 52, '2026-02-01', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (726, 52, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (727, 52, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (728, 52, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (729, 53, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (730, 53, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (731, 53, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (732, 53, '2026-02-08', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (733, 53, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (734, 53, '2026-02-06', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (735, 53, '2026-02-05', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (736, 53, '2026-02-04', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (737, 53, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (738, 53, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (739, 53, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (740, 53, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (741, 53, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (742, 53, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (743, 54, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (744, 54, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (745, 54, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (746, 54, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (747, 54, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (748, 54, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (749, 54, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (750, 54, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (751, 54, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (752, 54, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (753, 54, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (754, 54, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (755, 54, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (756, 54, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (757, 55, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (758, 55, '2026-02-10', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (759, 55, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (760, 55, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (761, 55, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (762, 55, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (763, 55, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (764, 55, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (765, 55, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (766, 55, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (767, 55, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (768, 55, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (769, 55, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (770, 55, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (771, 56, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (772, 56, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (773, 56, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (774, 56, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (775, 56, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (776, 56, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (777, 56, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (778, 56, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (779, 56, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (780, 56, '2026-02-02', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (781, 56, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (782, 56, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (783, 56, '2026-01-30', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (784, 56, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (785, 57, '2026-02-11', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (786, 57, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (787, 57, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (788, 57, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (789, 57, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (790, 57, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (791, 57, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (792, 57, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (793, 57, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (794, 57, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (795, 57, '2026-02-01', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (796, 57, '2026-01-31', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (797, 57, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (798, 57, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (799, 58, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (800, 58, '2026-02-10', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (801, 58, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (802, 58, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (803, 58, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (804, 58, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (805, 58, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (806, 58, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (807, 58, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (808, 58, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (809, 58, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (810, 58, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (811, 58, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (812, 58, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (813, 59, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (814, 59, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (815, 59, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (816, 59, '2026-02-08', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (817, 59, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (818, 59, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (819, 59, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (820, 59, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (821, 59, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (822, 59, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (823, 59, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (824, 59, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (825, 59, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (826, 59, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (827, 60, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (828, 60, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (829, 60, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (830, 60, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (831, 60, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (832, 60, '2026-02-06', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (833, 60, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (834, 60, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (835, 60, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (836, 60, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (837, 60, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (838, 60, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (839, 60, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (840, 60, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (841, 61, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (842, 61, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (843, 61, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (844, 61, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (845, 61, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (846, 61, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (847, 61, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (848, 61, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (849, 61, '2026-02-03', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (850, 61, '2026-02-02', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (851, 61, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (852, 61, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (853, 61, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (854, 61, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (855, 62, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (856, 62, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (857, 62, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (858, 62, '2026-02-08', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (859, 62, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (860, 62, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (861, 62, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (862, 62, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (863, 62, '2026-02-03', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (864, 62, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (865, 62, '2026-02-01', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (866, 62, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (867, 62, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (868, 62, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (869, 63, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (870, 63, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (871, 63, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (872, 63, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (873, 63, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (874, 63, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (875, 63, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (876, 63, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (877, 63, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (878, 63, '2026-02-02', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (879, 63, '2026-02-01', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (880, 63, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (881, 63, '2026-01-30', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (882, 63, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (883, 64, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (884, 64, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (885, 64, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (886, 64, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (887, 64, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (888, 64, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (889, 64, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (890, 64, '2026-02-04', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (891, 64, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (892, 64, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (893, 64, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (894, 64, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (895, 64, '2026-01-30', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (896, 64, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (897, 65, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (898, 65, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (899, 65, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (900, 65, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (901, 65, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (902, 65, '2026-02-06', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (903, 65, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (904, 65, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (905, 65, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (906, 65, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (907, 65, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (908, 65, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (909, 65, '2026-01-30', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (910, 65, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (911, 66, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (912, 66, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (913, 66, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (914, 66, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (915, 66, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (916, 66, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (917, 66, '2026-02-05', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (918, 66, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (919, 66, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (920, 66, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (921, 66, '2026-02-01', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (922, 66, '2026-01-31', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (923, 66, '2026-01-30', 'late', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (924, 66, '2026-01-29', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (925, 67, '2026-02-11', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (926, 67, '2026-02-10', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (927, 67, '2026-02-09', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (928, 67, '2026-02-08', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (929, 67, '2026-02-07', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (930, 67, '2026-02-06', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (931, 67, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (932, 67, '2026-02-04', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (933, 67, '2026-02-03', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (934, 67, '2026-02-02', 'present', NULL, '2026-02-11 20:38:28', '2026-02-11 20:38:28', NULL), (935, 67, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (936, 67, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (937, 67, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (938, 67, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (939, 68, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (940, 68, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (941, 68, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (942, 68, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (943, 68, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (944, 68, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (945, 68, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (946, 68, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (947, 68, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (948, 68, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (949, 68, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (950, 68, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (951, 68, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (952, 68, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (953, 69, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (954, 69, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (955, 69, '2026-02-09', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (956, 69, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (957, 69, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (958, 69, '2026-02-06', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (959, 69, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (960, 69, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (961, 69, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (962, 69, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (963, 69, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (964, 69, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (965, 69, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (966, 69, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (967, 70, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (968, 70, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (969, 70, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (970, 70, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (971, 70, '2026-02-07', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (972, 70, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (973, 70, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (974, 70, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (975, 70, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (976, 70, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (977, 70, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (978, 70, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (979, 70, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (980, 70, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (981, 71, '2026-02-11', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (982, 71, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (983, 71, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (984, 71, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (985, 71, '2026-02-07', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (986, 71, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (987, 71, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (988, 71, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (989, 71, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (990, 71, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (991, 71, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (992, 71, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (993, 71, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (994, 71, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (995, 72, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (996, 72, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (997, 72, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (998, 72, '2026-02-08', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (999, 72, '2026-02-07', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1000, 72, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1001, 72, '2026-02-05', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1002, 72, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1003, 72, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1004, 72, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1005, 72, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1006, 72, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1007, 72, '2026-01-30', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1008, 72, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1009, 73, '2026-02-11', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1010, 73, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1011, 73, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1012, 73, '2026-02-08', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1013, 73, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1014, 73, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1015, 73, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1016, 73, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1017, 73, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1018, 73, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1019, 73, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1020, 73, '2026-01-31', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1021, 73, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1022, 73, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1023, 74, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1024, 74, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1025, 74, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1026, 74, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1027, 74, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1028, 74, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1029, 74, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1030, 74, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1031, 74, '2026-02-03', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1032, 74, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1033, 74, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1034, 74, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1035, 74, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1036, 74, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1037, 75, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1038, 75, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1039, 75, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1040, 75, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1041, 75, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1042, 75, '2026-02-06', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1043, 75, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1044, 75, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1045, 75, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1046, 75, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1047, 75, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1048, 75, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1049, 75, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1050, 75, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1051, 76, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1052, 76, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1053, 76, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1054, 76, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1055, 76, '2026-02-07', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1056, 76, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1057, 76, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1058, 76, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1059, 76, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1060, 76, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1061, 76, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1062, 76, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1063, 76, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1064, 76, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1065, 77, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1066, 77, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1067, 77, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1068, 77, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1069, 77, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1070, 77, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1071, 77, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1072, 77, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1073, 77, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1074, 77, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1075, 77, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1076, 77, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1077, 77, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1078, 77, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1079, 78, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1080, 78, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1081, 78, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1082, 78, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1083, 78, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1084, 78, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1085, 78, '2026-02-05', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL); INSERT INTO `attendances` (`id`, `enrollment_id`, `date`, `status`, `notes`, `created_at`, `updated_at`, `deleted_at`) VALUES (1086, 78, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1087, 78, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1088, 78, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1089, 78, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1090, 78, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1091, 78, '2026-01-30', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1092, 78, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1093, 79, '2026-02-11', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1094, 79, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1095, 79, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1096, 79, '2026-02-08', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1097, 79, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1098, 79, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1099, 79, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1100, 79, '2026-02-04', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1101, 79, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1102, 79, '2026-02-02', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1103, 79, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1104, 79, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1105, 79, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1106, 79, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1107, 80, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1108, 80, '2026-02-10', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1109, 80, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1110, 80, '2026-02-08', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1111, 80, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1112, 80, '2026-02-06', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1113, 80, '2026-02-05', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1114, 80, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1115, 80, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1116, 80, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1117, 80, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1118, 80, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1119, 80, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1120, 80, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1121, 81, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1122, 81, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1123, 81, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1124, 81, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1125, 81, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1126, 81, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1127, 81, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1128, 81, '2026-02-04', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1129, 81, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1130, 81, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1131, 81, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1132, 81, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1133, 81, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1134, 81, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1135, 82, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1136, 82, '2026-02-10', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1137, 82, '2026-02-09', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1138, 82, '2026-02-08', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1139, 82, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1140, 82, '2026-02-06', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1141, 82, '2026-02-05', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1142, 82, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1143, 82, '2026-02-03', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1144, 82, '2026-02-02', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1145, 82, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1146, 82, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1147, 82, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1148, 82, '2026-01-29', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1149, 83, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1150, 83, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1151, 83, '2026-02-09', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1152, 83, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1153, 83, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1154, 83, '2026-02-06', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1155, 83, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1156, 83, '2026-02-04', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1157, 83, '2026-02-03', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1158, 83, '2026-02-02', 'late', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1159, 83, '2026-02-01', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1160, 83, '2026-01-31', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1161, 83, '2026-01-30', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1162, 83, '2026-01-29', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1163, 84, '2026-02-11', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1164, 84, '2026-02-10', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1165, 84, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1166, 84, '2026-02-08', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1167, 84, '2026-02-07', 'present', NULL, '2026-02-11 20:38:29', '2026-02-11 20:38:29', NULL), (1168, 84, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1169, 84, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1170, 84, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1171, 84, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1172, 84, '2026-02-02', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1173, 84, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1174, 84, '2026-01-31', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1175, 84, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1176, 84, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1177, 85, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1178, 85, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1179, 85, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1180, 85, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1181, 85, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1182, 85, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1183, 85, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1184, 85, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1185, 85, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1186, 85, '2026-02-02', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1187, 85, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1188, 85, '2026-01-31', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1189, 85, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1190, 85, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1191, 86, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1192, 86, '2026-02-10', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1193, 86, '2026-02-09', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1194, 86, '2026-02-08', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1195, 86, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1196, 86, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1197, 86, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1198, 86, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1199, 86, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1200, 86, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1201, 86, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1202, 86, '2026-01-31', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1203, 86, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1204, 86, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1205, 87, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1206, 87, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1207, 87, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1208, 87, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1209, 87, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1210, 87, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1211, 87, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1212, 87, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1213, 87, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1214, 87, '2026-02-02', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1215, 87, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1216, 87, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1217, 87, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1218, 87, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1219, 88, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1220, 88, '2026-02-10', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1221, 88, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1222, 88, '2026-02-08', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1223, 88, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1224, 88, '2026-02-06', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1225, 88, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1226, 88, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1227, 88, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1228, 88, '2026-02-02', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1229, 88, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1230, 88, '2026-01-31', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1231, 88, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1232, 88, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1233, 89, '2026-02-11', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1234, 89, '2026-02-10', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1235, 89, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1236, 89, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1237, 89, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1238, 89, '2026-02-06', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1239, 89, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1240, 89, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1241, 89, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1242, 89, '2026-02-02', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1243, 89, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1244, 89, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1245, 89, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1246, 89, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1247, 90, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1248, 90, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1249, 90, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1250, 90, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1251, 90, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1252, 90, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1253, 90, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1254, 90, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1255, 90, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1256, 90, '2026-02-02', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1257, 90, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1258, 90, '2026-01-31', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1259, 90, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1260, 90, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1261, 91, '2026-02-11', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1262, 91, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1263, 91, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1264, 91, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1265, 91, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1266, 91, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1267, 91, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1268, 91, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1269, 91, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1270, 91, '2026-02-02', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1271, 91, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1272, 91, '2026-01-31', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1273, 91, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1274, 91, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1275, 92, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1276, 92, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1277, 92, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1278, 92, '2026-02-08', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1279, 92, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1280, 92, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1281, 92, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1282, 92, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1283, 92, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1284, 92, '2026-02-02', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1285, 92, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1286, 92, '2026-01-31', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1287, 92, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1288, 92, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1289, 93, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1290, 93, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1291, 93, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1292, 93, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1293, 93, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1294, 93, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1295, 93, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1296, 93, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1297, 93, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1298, 93, '2026-02-02', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1299, 93, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1300, 93, '2026-01-31', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1301, 93, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1302, 93, '2026-01-29', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1303, 94, '2026-02-11', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1304, 94, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1305, 94, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1306, 94, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1307, 94, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1308, 94, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1309, 94, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1310, 94, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1311, 94, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1312, 94, '2026-02-02', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1313, 94, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1314, 94, '2026-01-31', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1315, 94, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1316, 94, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1317, 95, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1318, 95, '2026-02-10', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1319, 95, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1320, 95, '2026-02-08', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1321, 95, '2026-02-07', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1322, 95, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1323, 95, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1324, 95, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1325, 95, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1326, 95, '2026-02-02', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1327, 95, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1328, 95, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1329, 95, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1330, 95, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1331, 96, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1332, 96, '2026-02-10', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1333, 96, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1334, 96, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1335, 96, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1336, 96, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1337, 96, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1338, 96, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1339, 96, '2026-02-03', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1340, 96, '2026-02-02', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1341, 96, '2026-02-01', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1342, 96, '2026-01-31', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1343, 96, '2026-01-30', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1344, 96, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1345, 97, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1346, 97, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1347, 97, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1348, 97, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1349, 97, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1350, 97, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1351, 97, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1352, 97, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1353, 97, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1354, 97, '2026-02-02', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1355, 97, '2026-02-01', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1356, 97, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1357, 97, '2026-01-30', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1358, 97, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1359, 98, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1360, 98, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1361, 98, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1362, 98, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1363, 98, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1364, 98, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1365, 98, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1366, 98, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1367, 98, '2026-02-03', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1368, 98, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1369, 98, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1370, 98, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1371, 98, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1372, 98, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1373, 99, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1374, 99, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1375, 99, '2026-02-09', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1376, 99, '2026-02-08', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1377, 99, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1378, 99, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1379, 99, '2026-02-05', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1380, 99, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1381, 99, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1382, 99, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1383, 99, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1384, 99, '2026-01-31', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1385, 99, '2026-01-30', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1386, 99, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1387, 100, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1388, 100, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1389, 100, '2026-02-09', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1390, 100, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1391, 100, '2026-02-07', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1392, 100, '2026-02-06', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1393, 100, '2026-02-05', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1394, 100, '2026-02-04', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1395, 100, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1396, 100, '2026-02-02', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1397, 100, '2026-02-01', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1398, 100, '2026-01-31', 'late', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1399, 100, '2026-01-30', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1400, 100, '2026-01-29', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1401, 101, '2026-02-11', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1402, 101, '2026-02-10', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1403, 101, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1404, 101, '2026-02-08', 'present', NULL, '2026-02-11 20:38:30', '2026-02-11 20:38:30', NULL), (1405, 101, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1406, 101, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1407, 101, '2026-02-05', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1408, 101, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1409, 101, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1410, 101, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1411, 101, '2026-02-01', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1412, 101, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1413, 101, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1414, 101, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1415, 102, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1416, 102, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1417, 102, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1418, 102, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1419, 102, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1420, 102, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1421, 102, '2026-02-05', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1422, 102, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1423, 102, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1424, 102, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1425, 102, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1426, 102, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1427, 102, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1428, 102, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1429, 103, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1430, 103, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1431, 103, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1432, 103, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1433, 103, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1434, 103, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1435, 103, '2026-02-05', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1436, 103, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1437, 103, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1438, 103, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1439, 103, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1440, 103, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1441, 103, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1442, 103, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1443, 104, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1444, 104, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1445, 104, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1446, 104, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1447, 104, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1448, 104, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1449, 104, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1450, 104, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1451, 104, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1452, 104, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1453, 104, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1454, 104, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1455, 104, '2026-01-30', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1456, 104, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1457, 105, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1458, 105, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1459, 105, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1460, 105, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1461, 105, '2026-02-07', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1462, 105, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1463, 105, '2026-02-05', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1464, 105, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1465, 105, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1466, 105, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1467, 105, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1468, 105, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1469, 105, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1470, 105, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1471, 106, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1472, 106, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1473, 106, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1474, 106, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1475, 106, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1476, 106, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1477, 106, '2026-02-05', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1478, 106, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1479, 106, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1480, 106, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1481, 106, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1482, 106, '2026-01-31', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1483, 106, '2026-01-30', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1484, 106, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1485, 107, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1486, 107, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1487, 107, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1488, 107, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1489, 107, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1490, 107, '2026-02-06', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1491, 107, '2026-02-05', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1492, 107, '2026-02-04', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1493, 107, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1494, 107, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1495, 107, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1496, 107, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1497, 107, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1498, 107, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1499, 108, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1500, 108, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1501, 108, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1502, 108, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1503, 108, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1504, 108, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1505, 108, '2026-02-05', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1506, 108, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1507, 108, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1508, 108, '2026-02-02', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1509, 108, '2026-02-01', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1510, 108, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1511, 108, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1512, 108, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1513, 109, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1514, 109, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1515, 109, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1516, 109, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1517, 109, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1518, 109, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1519, 109, '2026-02-05', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1520, 109, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1521, 109, '2026-02-03', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1522, 109, '2026-02-02', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1523, 109, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1524, 109, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1525, 109, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1526, 109, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1527, 110, '2026-02-11', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1528, 110, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1529, 110, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1530, 110, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1531, 110, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1532, 110, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1533, 110, '2026-02-05', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1534, 110, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1535, 110, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1536, 110, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1537, 110, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1538, 110, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1539, 110, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1540, 110, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1541, 111, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1542, 111, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1543, 111, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1544, 111, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1545, 111, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1546, 111, '2026-02-06', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1547, 111, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1548, 111, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1549, 111, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1550, 111, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1551, 111, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1552, 111, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1553, 111, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1554, 111, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1555, 112, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1556, 112, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1557, 112, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1558, 112, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1559, 112, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1560, 112, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1561, 112, '2026-02-05', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1562, 112, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1563, 112, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1564, 112, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1565, 112, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1566, 112, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1567, 112, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1568, 112, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1569, 113, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1570, 113, '2026-02-10', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1571, 113, '2026-02-09', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1572, 113, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1573, 113, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1574, 113, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1575, 113, '2026-02-05', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1576, 113, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1577, 113, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1578, 113, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1579, 113, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1580, 113, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1581, 113, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1582, 113, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1583, 114, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1584, 114, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1585, 114, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1586, 114, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1587, 114, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1588, 114, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1589, 114, '2026-02-05', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1590, 114, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1591, 114, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1592, 114, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1593, 114, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1594, 114, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1595, 114, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1596, 114, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1597, 115, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1598, 115, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1599, 115, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1600, 115, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1601, 115, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1602, 115, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1603, 115, '2026-02-05', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1604, 115, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1605, 115, '2026-02-03', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1606, 115, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1607, 115, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1608, 115, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1609, 115, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1610, 115, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1611, 116, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1612, 116, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1613, 116, '2026-02-09', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1614, 116, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1615, 116, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1616, 116, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL); INSERT INTO `attendances` (`id`, `enrollment_id`, `date`, `status`, `notes`, `created_at`, `updated_at`, `deleted_at`) VALUES (1617, 116, '2026-02-05', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1618, 116, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1619, 116, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1620, 116, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1621, 116, '2026-02-01', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1622, 116, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1623, 116, '2026-01-30', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1624, 116, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1625, 117, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1626, 117, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1627, 117, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1628, 117, '2026-02-08', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1629, 117, '2026-02-07', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1630, 117, '2026-02-06', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1631, 117, '2026-02-05', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1632, 117, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1633, 117, '2026-02-03', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1634, 117, '2026-02-02', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1635, 117, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1636, 117, '2026-01-31', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1637, 117, '2026-01-30', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1638, 117, '2026-01-29', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1639, 118, '2026-02-11', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1640, 118, '2026-02-10', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1641, 118, '2026-02-09', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1642, 118, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1643, 118, '2026-02-07', 'late', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1644, 118, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1645, 118, '2026-02-05', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1646, 118, '2026-02-04', 'present', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1647, 118, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:31', '2026-02-11 20:38:31', NULL), (1648, 118, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1649, 118, '2026-02-01', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1650, 118, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1651, 118, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1652, 118, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1653, 119, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1654, 119, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1655, 119, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1656, 119, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1657, 119, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1658, 119, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1659, 119, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1660, 119, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1661, 119, '2026-02-03', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1662, 119, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1663, 119, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1664, 119, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1665, 119, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1666, 119, '2026-01-29', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1667, 120, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1668, 120, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1669, 120, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1670, 120, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1671, 120, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1672, 120, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1673, 120, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1674, 120, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1675, 120, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1676, 120, '2026-02-02', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1677, 120, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1678, 120, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1679, 120, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1680, 120, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1681, 121, '2026-02-11', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1682, 121, '2026-02-10', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1683, 121, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1684, 121, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1685, 121, '2026-02-07', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1686, 121, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1687, 121, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1688, 121, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1689, 121, '2026-02-03', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1690, 121, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1691, 121, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1692, 121, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1693, 121, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1694, 121, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1695, 122, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1696, 122, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1697, 122, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1698, 122, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1699, 122, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1700, 122, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1701, 122, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1702, 122, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1703, 122, '2026-02-03', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1704, 122, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1705, 122, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1706, 122, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1707, 122, '2026-01-30', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1708, 122, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1709, 123, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1710, 123, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1711, 123, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1712, 123, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1713, 123, '2026-02-07', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1714, 123, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1715, 123, '2026-02-05', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1716, 123, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1717, 123, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1718, 123, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1719, 123, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1720, 123, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1721, 123, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1722, 123, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1723, 124, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1724, 124, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1725, 124, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1726, 124, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1727, 124, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1728, 124, '2026-02-06', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1729, 124, '2026-02-05', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1730, 124, '2026-02-04', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1731, 124, '2026-02-03', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1732, 124, '2026-02-02', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1733, 124, '2026-02-01', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1734, 124, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1735, 124, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1736, 124, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1737, 125, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1738, 125, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1739, 125, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1740, 125, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1741, 125, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1742, 125, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1743, 125, '2026-02-05', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1744, 125, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1745, 125, '2026-02-03', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1746, 125, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1747, 125, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1748, 125, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1749, 125, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1750, 125, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1751, 126, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1752, 126, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1753, 126, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1754, 126, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1755, 126, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1756, 126, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1757, 126, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1758, 126, '2026-02-04', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1759, 126, '2026-02-03', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1760, 126, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1761, 126, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1762, 126, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1763, 126, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1764, 126, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1765, 127, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1766, 127, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1767, 127, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1768, 127, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1769, 127, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1770, 127, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1771, 127, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1772, 127, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1773, 127, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1774, 127, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1775, 127, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1776, 127, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1777, 127, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1778, 127, '2026-01-29', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1779, 128, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1780, 128, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1781, 128, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1782, 128, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1783, 128, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1784, 128, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1785, 128, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1786, 128, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1787, 128, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1788, 128, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1789, 128, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1790, 128, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1791, 128, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1792, 128, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1793, 129, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1794, 129, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1795, 129, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1796, 129, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1797, 129, '2026-02-07', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1798, 129, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1799, 129, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1800, 129, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1801, 129, '2026-02-03', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1802, 129, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1803, 129, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1804, 129, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1805, 129, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1806, 129, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1807, 130, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1808, 130, '2026-02-10', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1809, 130, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1810, 130, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1811, 130, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1812, 130, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1813, 130, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1814, 130, '2026-02-04', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1815, 130, '2026-02-03', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1816, 130, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1817, 130, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1818, 130, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1819, 130, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1820, 130, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1821, 131, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1822, 131, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1823, 131, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1824, 131, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1825, 131, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1826, 131, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1827, 131, '2026-02-05', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1828, 131, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1829, 131, '2026-02-03', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1830, 131, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1831, 131, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1832, 131, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1833, 131, '2026-01-30', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1834, 131, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1835, 132, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1836, 132, '2026-02-10', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1837, 132, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1838, 132, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1839, 132, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1840, 132, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1841, 132, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1842, 132, '2026-02-04', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1843, 132, '2026-02-03', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1844, 132, '2026-02-02', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1845, 132, '2026-02-01', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1846, 132, '2026-01-31', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1847, 132, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1848, 132, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1849, 133, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1850, 133, '2026-02-10', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1851, 133, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1852, 133, '2026-02-08', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1853, 133, '2026-02-07', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1854, 133, '2026-02-06', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1855, 133, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1856, 133, '2026-02-04', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1857, 133, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1858, 133, '2026-02-02', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1859, 133, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1860, 133, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1861, 133, '2026-01-30', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1862, 133, '2026-01-29', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1863, 134, '2026-02-11', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1864, 134, '2026-02-10', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1865, 134, '2026-02-09', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1866, 134, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1867, 134, '2026-02-07', 'late', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1868, 134, '2026-02-06', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1869, 134, '2026-02-05', 'present', NULL, '2026-02-11 20:38:32', '2026-02-11 20:38:32', NULL), (1870, 134, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1871, 134, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1872, 134, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1873, 134, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1874, 134, '2026-01-31', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1875, 134, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1876, 134, '2026-01-29', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1877, 135, '2026-02-11', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1878, 135, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1879, 135, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1880, 135, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1881, 135, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1882, 135, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1883, 135, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1884, 135, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1885, 135, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1886, 135, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1887, 135, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1888, 135, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1889, 135, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1890, 135, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1891, 136, '2026-02-11', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1892, 136, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1893, 136, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1894, 136, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1895, 136, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1896, 136, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1897, 136, '2026-02-05', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1898, 136, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1899, 136, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1900, 136, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1901, 136, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1902, 136, '2026-01-31', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1903, 136, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1904, 136, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1905, 137, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1906, 137, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1907, 137, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1908, 137, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1909, 137, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1910, 137, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1911, 137, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1912, 137, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1913, 137, '2026-02-03', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1914, 137, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1915, 137, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1916, 137, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1917, 137, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1918, 137, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1919, 138, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1920, 138, '2026-02-10', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1921, 138, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1922, 138, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1923, 138, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1924, 138, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1925, 138, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1926, 138, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1927, 138, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1928, 138, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1929, 138, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1930, 138, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1931, 138, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1932, 138, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1933, 139, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1934, 139, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1935, 139, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1936, 139, '2026-02-08', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1937, 139, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1938, 139, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1939, 139, '2026-02-05', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1940, 139, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1941, 139, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1942, 139, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1943, 139, '2026-02-01', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1944, 139, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1945, 139, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1946, 139, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1947, 140, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1948, 140, '2026-02-10', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1949, 140, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1950, 140, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1951, 140, '2026-02-07', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1952, 140, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1953, 140, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1954, 140, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1955, 140, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1956, 140, '2026-02-02', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1957, 140, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1958, 140, '2026-01-31', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1959, 140, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1960, 140, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1961, 141, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1962, 141, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1963, 141, '2026-02-09', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1964, 141, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1965, 141, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1966, 141, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1967, 141, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1968, 141, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1969, 141, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1970, 141, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1971, 141, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1972, 141, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1973, 141, '2026-01-30', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1974, 141, '2026-01-29', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1975, 142, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1976, 142, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1977, 142, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1978, 142, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1979, 142, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1980, 142, '2026-02-06', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1981, 142, '2026-02-05', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1982, 142, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1983, 142, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1984, 142, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1985, 142, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1986, 142, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1987, 142, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1988, 142, '2026-01-29', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1989, 143, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1990, 143, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1991, 143, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1992, 143, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1993, 143, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1994, 143, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1995, 143, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1996, 143, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1997, 143, '2026-02-03', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1998, 143, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (1999, 143, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2000, 143, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2001, 143, '2026-01-30', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2002, 143, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2003, 144, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2004, 144, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2005, 144, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2006, 144, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2007, 144, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2008, 144, '2026-02-06', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2009, 144, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2010, 144, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2011, 144, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2012, 144, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2013, 144, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2014, 144, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2015, 144, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2016, 144, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2017, 145, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2018, 145, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2019, 145, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2020, 145, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2021, 145, '2026-02-07', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2022, 145, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2023, 145, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2024, 145, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2025, 145, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2026, 145, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2027, 145, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2028, 145, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2029, 145, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2030, 145, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2031, 146, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2032, 146, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2033, 146, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2034, 146, '2026-02-08', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2035, 146, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2036, 146, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2037, 146, '2026-02-05', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2038, 146, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2039, 146, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2040, 146, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2041, 146, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2042, 146, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2043, 146, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2044, 146, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2045, 147, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2046, 147, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2047, 147, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2048, 147, '2026-02-08', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2049, 147, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2050, 147, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2051, 147, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2052, 147, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2053, 147, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2054, 147, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2055, 147, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2056, 147, '2026-01-31', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2057, 147, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2058, 147, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2059, 148, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2060, 148, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2061, 148, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2062, 148, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2063, 148, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2064, 148, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2065, 148, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2066, 148, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2067, 148, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2068, 148, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2069, 148, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2070, 148, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2071, 148, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2072, 148, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2073, 149, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2074, 149, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2075, 149, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2076, 149, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2077, 149, '2026-02-07', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2078, 149, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2079, 149, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2080, 149, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2081, 149, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2082, 149, '2026-02-02', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2083, 149, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2084, 149, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2085, 149, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2086, 149, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2087, 150, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2088, 150, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2089, 150, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2090, 150, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2091, 150, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2092, 150, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2093, 150, '2026-02-05', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2094, 150, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2095, 150, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2096, 150, '2026-02-02', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2097, 150, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2098, 150, '2026-01-31', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2099, 150, '2026-01-30', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2100, 150, '2026-01-29', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2101, 151, '2026-02-11', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2102, 151, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2103, 151, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2104, 151, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2105, 151, '2026-02-07', 'excused', 'Excused absence', '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2106, 151, '2026-02-06', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2107, 151, '2026-02-05', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2108, 151, '2026-02-04', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2109, 151, '2026-02-03', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2110, 151, '2026-02-02', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2111, 151, '2026-02-01', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2112, 151, '2026-01-31', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2113, 151, '2026-01-30', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2114, 151, '2026-01-29', 'late', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2115, 152, '2026-02-11', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2116, 152, '2026-02-10', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2117, 152, '2026-02-09', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2118, 152, '2026-02-08', 'present', NULL, '2026-02-11 20:38:33', '2026-02-11 20:38:33', NULL), (2119, 152, '2026-02-07', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2120, 152, '2026-02-06', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2121, 152, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2122, 152, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2123, 152, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2124, 152, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2125, 152, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2126, 152, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2127, 152, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2128, 152, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2129, 153, '2026-02-11', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2130, 153, '2026-02-10', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2131, 153, '2026-02-09', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2132, 153, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2133, 153, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2134, 153, '2026-02-06', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2135, 153, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2136, 153, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2137, 153, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2138, 153, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2139, 153, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2140, 153, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2141, 153, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2142, 153, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2143, 154, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL); INSERT INTO `attendances` (`id`, `enrollment_id`, `date`, `status`, `notes`, `created_at`, `updated_at`, `deleted_at`) VALUES (2144, 154, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2145, 154, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2146, 154, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2147, 154, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2148, 154, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2149, 154, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2150, 154, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2151, 154, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2152, 154, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2153, 154, '2026-02-01', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2154, 154, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2155, 154, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2156, 154, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2157, 155, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2158, 155, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2159, 155, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2160, 155, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2161, 155, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2162, 155, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2163, 155, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2164, 155, '2026-02-04', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2165, 155, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2166, 155, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2167, 155, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2168, 155, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2169, 155, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2170, 155, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2171, 156, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2172, 156, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2173, 156, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2174, 156, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2175, 156, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2176, 156, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2177, 156, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2178, 156, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2179, 156, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2180, 156, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2181, 156, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2182, 156, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2183, 156, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2184, 156, '2026-01-29', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2185, 157, '2026-02-11', 'excused', 'Excused absence', '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2186, 157, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2187, 157, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2188, 157, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2189, 157, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2190, 157, '2026-02-06', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2191, 157, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2192, 157, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2193, 157, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2194, 157, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2195, 157, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2196, 157, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2197, 157, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2198, 157, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2199, 158, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2200, 158, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2201, 158, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2202, 158, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2203, 158, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2204, 158, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2205, 158, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2206, 158, '2026-02-04', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2207, 158, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2208, 158, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2209, 158, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2210, 158, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2211, 158, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2212, 158, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2213, 159, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2214, 159, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2215, 159, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2216, 159, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2217, 159, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2218, 159, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2219, 159, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2220, 159, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2221, 159, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2222, 159, '2026-02-02', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2223, 159, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2224, 159, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2225, 159, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2226, 159, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2227, 160, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2228, 160, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2229, 160, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2230, 160, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2231, 160, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2232, 160, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2233, 160, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2234, 160, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2235, 160, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2236, 160, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2237, 160, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2238, 160, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2239, 160, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2240, 160, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2241, 161, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2242, 161, '2026-02-10', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2243, 161, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2244, 161, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2245, 161, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2246, 161, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2247, 161, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2248, 161, '2026-02-04', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2249, 161, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2250, 161, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2251, 161, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2252, 161, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2253, 161, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2254, 161, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2255, 162, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2256, 162, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2257, 162, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2258, 162, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2259, 162, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2260, 162, '2026-02-06', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2261, 162, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2262, 162, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2263, 162, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2264, 162, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2265, 162, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2266, 162, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2267, 162, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2268, 162, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2269, 163, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2270, 163, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2271, 163, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2272, 163, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2273, 163, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2274, 163, '2026-02-06', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2275, 163, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2276, 163, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2277, 163, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2278, 163, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2279, 163, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2280, 163, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2281, 163, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2282, 163, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2283, 164, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2284, 164, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2285, 164, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2286, 164, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2287, 164, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2288, 164, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2289, 164, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2290, 164, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2291, 164, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2292, 164, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2293, 164, '2026-02-01', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2294, 164, '2026-01-31', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2295, 164, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2296, 164, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2297, 165, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2298, 165, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2299, 165, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2300, 165, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2301, 165, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2302, 165, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2303, 165, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2304, 165, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2305, 165, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2306, 165, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2307, 165, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2308, 165, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2309, 165, '2026-01-30', 'excused', 'Excused absence', '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2310, 165, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2311, 166, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2312, 166, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2313, 166, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2314, 166, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2315, 166, '2026-02-07', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2316, 166, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2317, 166, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2318, 166, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2319, 166, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2320, 166, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2321, 166, '2026-02-01', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2322, 166, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2323, 166, '2026-01-30', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2324, 166, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2325, 167, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2326, 167, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2327, 167, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2328, 167, '2026-02-08', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2329, 167, '2026-02-07', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2330, 167, '2026-02-06', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2331, 167, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2332, 167, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2333, 167, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2334, 167, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2335, 167, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2336, 167, '2026-01-31', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2337, 167, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2338, 167, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2339, 168, '2026-02-11', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2340, 168, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2341, 168, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2342, 168, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2343, 168, '2026-02-07', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2344, 168, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2345, 168, '2026-02-05', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2346, 168, '2026-02-04', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2347, 168, '2026-02-03', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2348, 168, '2026-02-02', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2349, 168, '2026-02-01', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2350, 168, '2026-01-31', 'late', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2351, 168, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2352, 168, '2026-01-29', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2353, 169, '2026-02-11', 'excused', 'Excused absence', '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2354, 169, '2026-02-10', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2355, 169, '2026-02-09', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2356, 169, '2026-02-08', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2357, 169, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2358, 169, '2026-02-06', 'present', NULL, '2026-02-11 20:38:34', '2026-02-11 20:38:34', NULL), (2359, 169, '2026-02-05', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2360, 169, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2361, 169, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2362, 169, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2363, 169, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2364, 169, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2365, 169, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2366, 169, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2367, 170, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2368, 170, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2369, 170, '2026-02-09', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2370, 170, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2371, 170, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2372, 170, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2373, 170, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2374, 170, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2375, 170, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2376, 170, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2377, 170, '2026-02-01', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2378, 170, '2026-01-31', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2379, 170, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2380, 170, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2381, 171, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2382, 171, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2383, 171, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2384, 171, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2385, 171, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2386, 171, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2387, 171, '2026-02-05', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2388, 171, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2389, 171, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2390, 171, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2391, 171, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2392, 171, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2393, 171, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2394, 171, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2395, 172, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2396, 172, '2026-02-10', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2397, 172, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2398, 172, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2399, 172, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2400, 172, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2401, 172, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2402, 172, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2403, 172, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2404, 172, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2405, 172, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2406, 172, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2407, 172, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2408, 172, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2409, 173, '2026-02-11', 'excused', 'Excused absence', '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2410, 173, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2411, 173, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2412, 173, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2413, 173, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2414, 173, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2415, 173, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2416, 173, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2417, 173, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2418, 173, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2419, 173, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2420, 173, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2421, 173, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2422, 173, '2026-01-29', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2423, 174, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2424, 174, '2026-02-10', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2425, 174, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2426, 174, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2427, 174, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2428, 174, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2429, 174, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2430, 174, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2431, 174, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2432, 174, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2433, 174, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2434, 174, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2435, 174, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2436, 174, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2437, 175, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2438, 175, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2439, 175, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2440, 175, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2441, 175, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2442, 175, '2026-02-06', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2443, 175, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2444, 175, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2445, 175, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2446, 175, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2447, 175, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2448, 175, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2449, 175, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2450, 175, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2451, 176, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2452, 176, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2453, 176, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2454, 176, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2455, 176, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2456, 176, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2457, 176, '2026-02-05', 'excused', 'Excused absence', '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2458, 176, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2459, 176, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2460, 176, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2461, 176, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2462, 176, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2463, 176, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2464, 176, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2465, 177, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2466, 177, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2467, 177, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2468, 177, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2469, 177, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2470, 177, '2026-02-06', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2471, 177, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2472, 177, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2473, 177, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2474, 177, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2475, 177, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2476, 177, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2477, 177, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2478, 177, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2479, 178, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2480, 178, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2481, 178, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2482, 178, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2483, 178, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2484, 178, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2485, 178, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2486, 178, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2487, 178, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2488, 178, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2489, 178, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2490, 178, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2491, 178, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2492, 178, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2493, 179, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2494, 179, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2495, 179, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2496, 179, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2497, 179, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2498, 179, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2499, 179, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2500, 179, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2501, 179, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2502, 179, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2503, 179, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2504, 179, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2505, 179, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2506, 179, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2507, 180, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2508, 180, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2509, 180, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2510, 180, '2026-02-08', 'excused', 'Excused absence', '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2511, 180, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2512, 180, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2513, 180, '2026-02-05', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2514, 180, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2515, 180, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2516, 180, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2517, 180, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2518, 180, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2519, 180, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2520, 180, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2521, 181, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2522, 181, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2523, 181, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2524, 181, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2525, 181, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2526, 181, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2527, 181, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2528, 181, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2529, 181, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2530, 181, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2531, 181, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2532, 181, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2533, 181, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2534, 181, '2026-01-29', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2535, 182, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2536, 182, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2537, 182, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2538, 182, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2539, 182, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2540, 182, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2541, 182, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2542, 182, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2543, 182, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2544, 182, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2545, 182, '2026-02-01', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2546, 182, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2547, 182, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2548, 182, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2549, 183, '2026-02-11', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2550, 183, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2551, 183, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2552, 183, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2553, 183, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2554, 183, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2555, 183, '2026-02-05', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2556, 183, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2557, 183, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2558, 183, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2559, 183, '2026-02-01', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2560, 183, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2561, 183, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2562, 183, '2026-01-29', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2563, 184, '2026-02-11', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2564, 184, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2565, 184, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2566, 184, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2567, 184, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2568, 184, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2569, 184, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2570, 184, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2571, 184, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2572, 184, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2573, 184, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2574, 184, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2575, 184, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2576, 184, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2577, 185, '2026-02-11', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2578, 185, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2579, 185, '2026-02-09', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2580, 185, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2581, 185, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2582, 185, '2026-02-06', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2583, 185, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2584, 185, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2585, 185, '2026-02-03', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2586, 185, '2026-02-02', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2587, 185, '2026-02-01', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2588, 185, '2026-01-31', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2589, 185, '2026-01-30', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2590, 185, '2026-01-29', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2591, 186, '2026-02-11', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2592, 186, '2026-02-10', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2593, 186, '2026-02-09', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2594, 186, '2026-02-08', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2595, 186, '2026-02-07', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2596, 186, '2026-02-06', 'late', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2597, 186, '2026-02-05', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2598, 186, '2026-02-04', 'present', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2599, 186, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:35', '2026-02-11 20:38:35', NULL), (2600, 186, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2601, 186, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2602, 186, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2603, 186, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2604, 186, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2605, 187, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2606, 187, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2607, 187, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2608, 187, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2609, 187, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2610, 187, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2611, 187, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2612, 187, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2613, 187, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2614, 187, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2615, 187, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2616, 187, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2617, 187, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2618, 187, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2619, 188, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2620, 188, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2621, 188, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2622, 188, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2623, 188, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2624, 188, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2625, 188, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2626, 188, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2627, 188, '2026-02-03', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2628, 188, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2629, 188, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2630, 188, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2631, 188, '2026-01-30', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2632, 188, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2633, 189, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2634, 189, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2635, 189, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2636, 189, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2637, 189, '2026-02-07', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2638, 189, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2639, 189, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2640, 189, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2641, 189, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2642, 189, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2643, 189, '2026-02-01', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2644, 189, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2645, 189, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2646, 189, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2647, 190, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2648, 190, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2649, 190, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2650, 190, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2651, 190, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2652, 190, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2653, 190, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2654, 190, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2655, 190, '2026-02-03', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2656, 190, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2657, 190, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2658, 190, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2659, 190, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2660, 190, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2661, 191, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2662, 191, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2663, 191, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2664, 191, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2665, 191, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2666, 191, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2667, 191, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2668, 191, '2026-02-04', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2669, 191, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2670, 191, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2671, 191, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2672, 191, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL); INSERT INTO `attendances` (`id`, `enrollment_id`, `date`, `status`, `notes`, `created_at`, `updated_at`, `deleted_at`) VALUES (2673, 191, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2674, 191, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2675, 192, '2026-02-11', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2676, 192, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2677, 192, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2678, 192, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2679, 192, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2680, 192, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2681, 192, '2026-02-05', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2682, 192, '2026-02-04', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2683, 192, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2684, 192, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2685, 192, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2686, 192, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2687, 192, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2688, 192, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2689, 193, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2690, 193, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2691, 193, '2026-02-09', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2692, 193, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2693, 193, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2694, 193, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2695, 193, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2696, 193, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2697, 193, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2698, 193, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2699, 193, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2700, 193, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2701, 193, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2702, 193, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2703, 194, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2704, 194, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2705, 194, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2706, 194, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2707, 194, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2708, 194, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2709, 194, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2710, 194, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2711, 194, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2712, 194, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2713, 194, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2714, 194, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2715, 194, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2716, 194, '2026-01-29', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2717, 195, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2718, 195, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2719, 195, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2720, 195, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2721, 195, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2722, 195, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2723, 195, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2724, 195, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2725, 195, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2726, 195, '2026-02-02', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2727, 195, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2728, 195, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2729, 195, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2730, 195, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2731, 196, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2732, 196, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2733, 196, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2734, 196, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2735, 196, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2736, 196, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2737, 196, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2738, 196, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2739, 196, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2740, 196, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2741, 196, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2742, 196, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2743, 196, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2744, 196, '2026-01-29', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2745, 197, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2746, 197, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2747, 197, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2748, 197, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2749, 197, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2750, 197, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2751, 197, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2752, 197, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2753, 197, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2754, 197, '2026-02-02', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2755, 197, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2756, 197, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2757, 197, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2758, 197, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2759, 198, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2760, 198, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2761, 198, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2762, 198, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2763, 198, '2026-02-07', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2764, 198, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2765, 198, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2766, 198, '2026-02-04', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2767, 198, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2768, 198, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2769, 198, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2770, 198, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2771, 198, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2772, 198, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2773, 199, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2774, 199, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2775, 199, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2776, 199, '2026-02-08', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2777, 199, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2778, 199, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2779, 199, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2780, 199, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2781, 199, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2782, 199, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2783, 199, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2784, 199, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2785, 199, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2786, 199, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2787, 200, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2788, 200, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2789, 200, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2790, 200, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2791, 200, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2792, 200, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2793, 200, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2794, 200, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2795, 200, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2796, 200, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2797, 200, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2798, 200, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2799, 200, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2800, 200, '2026-01-29', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2801, 201, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2802, 201, '2026-02-10', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2803, 201, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2804, 201, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2805, 201, '2026-02-07', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2806, 201, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2807, 201, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2808, 201, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2809, 201, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2810, 201, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2811, 201, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2812, 201, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2813, 201, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2814, 201, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2815, 202, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2816, 202, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2817, 202, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2818, 202, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2819, 202, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2820, 202, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2821, 202, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2822, 202, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2823, 202, '2026-02-03', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2824, 202, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2825, 202, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2826, 202, '2026-01-31', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2827, 202, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2828, 202, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2829, 203, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2830, 203, '2026-02-10', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2831, 203, '2026-02-09', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2832, 203, '2026-02-08', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2833, 203, '2026-02-07', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2834, 203, '2026-02-06', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2835, 203, '2026-02-05', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2836, 203, '2026-02-04', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2837, 203, '2026-02-03', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2838, 203, '2026-02-02', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2839, 203, '2026-02-01', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2840, 203, '2026-01-31', 'late', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2841, 203, '2026-01-30', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2842, 203, '2026-01-29', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2843, 204, '2026-02-11', 'present', NULL, '2026-02-11 20:38:36', '2026-02-11 20:38:36', NULL), (2844, 204, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2845, 204, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2846, 204, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2847, 204, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2848, 204, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2849, 204, '2026-02-05', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2850, 204, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2851, 204, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2852, 204, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2853, 204, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2854, 204, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2855, 204, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2856, 204, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2857, 205, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2858, 205, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2859, 205, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2860, 205, '2026-02-08', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2861, 205, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2862, 205, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2863, 205, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2864, 205, '2026-02-04', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2865, 205, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2866, 205, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2867, 205, '2026-02-01', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2868, 205, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2869, 205, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2870, 205, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2871, 206, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2872, 206, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2873, 206, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2874, 206, '2026-02-08', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2875, 206, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2876, 206, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2877, 206, '2026-02-05', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2878, 206, '2026-02-04', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2879, 206, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2880, 206, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2881, 206, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2882, 206, '2026-01-31', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2883, 206, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2884, 206, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2885, 207, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2886, 207, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2887, 207, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2888, 207, '2026-02-08', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2889, 207, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2890, 207, '2026-02-06', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2891, 207, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2892, 207, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2893, 207, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2894, 207, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2895, 207, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2896, 207, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2897, 207, '2026-01-30', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2898, 207, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2899, 208, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2900, 208, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2901, 208, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2902, 208, '2026-02-08', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2903, 208, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2904, 208, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2905, 208, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2906, 208, '2026-02-04', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2907, 208, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2908, 208, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2909, 208, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2910, 208, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2911, 208, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2912, 208, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2913, 209, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2914, 209, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2915, 209, '2026-02-09', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2916, 209, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2917, 209, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2918, 209, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2919, 209, '2026-02-05', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2920, 209, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2921, 209, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2922, 209, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2923, 209, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2924, 209, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2925, 209, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2926, 209, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2927, 210, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2928, 210, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2929, 210, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2930, 210, '2026-02-08', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2931, 210, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2932, 210, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2933, 210, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2934, 210, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2935, 210, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2936, 210, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2937, 210, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2938, 210, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2939, 210, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2940, 210, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2941, 211, '2026-02-11', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2942, 211, '2026-02-10', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2943, 211, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2944, 211, '2026-02-08', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2945, 211, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2946, 211, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2947, 211, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2948, 211, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2949, 211, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2950, 211, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2951, 211, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2952, 211, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2953, 211, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2954, 211, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2955, 212, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2956, 212, '2026-02-10', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2957, 212, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2958, 212, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2959, 212, '2026-02-07', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2960, 212, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2961, 212, '2026-02-05', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2962, 212, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2963, 212, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2964, 212, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2965, 212, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2966, 212, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2967, 212, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2968, 212, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2969, 213, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2970, 213, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2971, 213, '2026-02-09', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2972, 213, '2026-02-08', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2973, 213, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2974, 213, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2975, 213, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2976, 213, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2977, 213, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2978, 213, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2979, 213, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2980, 213, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2981, 213, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2982, 213, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2983, 214, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2984, 214, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2985, 214, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2986, 214, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2987, 214, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2988, 214, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2989, 214, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2990, 214, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2991, 214, '2026-02-03', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2992, 214, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2993, 214, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2994, 214, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2995, 214, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2996, 214, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2997, 215, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2998, 215, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (2999, 215, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3000, 215, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3001, 215, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3002, 215, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3003, 215, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3004, 215, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3005, 215, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3006, 215, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3007, 215, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3008, 215, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3009, 215, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3010, 215, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3011, 216, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3012, 216, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3013, 216, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3014, 216, '2026-02-08', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3015, 216, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3016, 216, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3017, 216, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3018, 216, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3019, 216, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3020, 216, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3021, 216, '2026-02-01', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3022, 216, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3023, 216, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3024, 216, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3025, 217, '2026-02-11', 'excused', 'Excused absence', '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3026, 217, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3027, 217, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3028, 217, '2026-02-08', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3029, 217, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3030, 217, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3031, 217, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3032, 217, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3033, 217, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3034, 217, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3035, 217, '2026-02-01', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3036, 217, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3037, 217, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3038, 217, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3039, 218, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3040, 218, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3041, 218, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3042, 218, '2026-02-08', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3043, 218, '2026-02-07', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3044, 218, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3045, 218, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3046, 218, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3047, 218, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3048, 218, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3049, 218, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3050, 218, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3051, 218, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3052, 218, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3053, 219, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3054, 219, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3055, 219, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3056, 219, '2026-02-08', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3057, 219, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3058, 219, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3059, 219, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3060, 219, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3061, 219, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3062, 219, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3063, 219, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3064, 219, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3065, 219, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3066, 219, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3067, 220, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3068, 220, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3069, 220, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3070, 220, '2026-02-08', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3071, 220, '2026-02-07', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3072, 220, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3073, 220, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3074, 220, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3075, 220, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3076, 220, '2026-02-02', 'absent', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3077, 220, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3078, 220, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3079, 220, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3080, 220, '2026-01-29', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3081, 221, '2026-02-11', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3082, 221, '2026-02-10', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3083, 221, '2026-02-09', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3084, 221, '2026-02-08', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3085, 221, '2026-02-07', 'late', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3086, 221, '2026-02-06', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3087, 221, '2026-02-05', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3088, 221, '2026-02-04', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3089, 221, '2026-02-03', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3090, 221, '2026-02-02', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3091, 221, '2026-02-01', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3092, 221, '2026-01-31', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3093, 221, '2026-01-30', 'present', NULL, '2026-02-11 20:38:37', '2026-02-11 20:38:37', NULL), (3094, 221, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3095, 222, '2026-02-11', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3096, 222, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3097, 222, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3098, 222, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3099, 222, '2026-02-07', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3100, 222, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3101, 222, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3102, 222, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3103, 222, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3104, 222, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3105, 222, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3106, 222, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3107, 222, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3108, 222, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3109, 223, '2026-02-11', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3110, 223, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3111, 223, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3112, 223, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3113, 223, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3114, 223, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3115, 223, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3116, 223, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3117, 223, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3118, 223, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3119, 223, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3120, 223, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3121, 223, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3122, 223, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3123, 224, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3124, 224, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3125, 224, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3126, 224, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3127, 224, '2026-02-07', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3128, 224, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3129, 224, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3130, 224, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3131, 224, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3132, 224, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3133, 224, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3134, 224, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3135, 224, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3136, 224, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3137, 225, '2026-02-11', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3138, 225, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3139, 225, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3140, 225, '2026-02-08', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3141, 225, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3142, 225, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3143, 225, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3144, 225, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3145, 225, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3146, 225, '2026-02-02', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3147, 225, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3148, 225, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3149, 225, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3150, 225, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3151, 226, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3152, 226, '2026-02-10', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3153, 226, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3154, 226, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3155, 226, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3156, 226, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3157, 226, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3158, 226, '2026-02-04', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3159, 226, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3160, 226, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3161, 226, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3162, 226, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3163, 226, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3164, 226, '2026-01-29', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3165, 227, '2026-02-11', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3166, 227, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3167, 227, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3168, 227, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3169, 227, '2026-02-07', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3170, 227, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3171, 227, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3172, 227, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3173, 227, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3174, 227, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3175, 227, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3176, 227, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3177, 227, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3178, 227, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3179, 228, '2026-02-11', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3180, 228, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3181, 228, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3182, 228, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3183, 228, '2026-02-07', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3184, 228, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3185, 228, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3186, 228, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3187, 228, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3188, 228, '2026-02-02', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3189, 228, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3190, 228, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3191, 228, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3192, 228, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3193, 229, '2026-02-11', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3194, 229, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3195, 229, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3196, 229, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3197, 229, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3198, 229, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3199, 229, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3200, 229, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3201, 229, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL); INSERT INTO `attendances` (`id`, `enrollment_id`, `date`, `status`, `notes`, `created_at`, `updated_at`, `deleted_at`) VALUES (3202, 229, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3203, 229, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3204, 229, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3205, 229, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3206, 229, '2026-01-29', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3207, 230, '2026-02-11', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3208, 230, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3209, 230, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3210, 230, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3211, 230, '2026-02-07', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3212, 230, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3213, 230, '2026-02-05', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3214, 230, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3215, 230, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3216, 230, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3217, 230, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3218, 230, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3219, 230, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3220, 230, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3221, 231, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3222, 231, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3223, 231, '2026-02-09', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3224, 231, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3225, 231, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3226, 231, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3227, 231, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3228, 231, '2026-02-04', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3229, 231, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3230, 231, '2026-02-02', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3231, 231, '2026-02-01', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3232, 231, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3233, 231, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3234, 231, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3235, 232, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3236, 232, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3237, 232, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3238, 232, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3239, 232, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3240, 232, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3241, 232, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3242, 232, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3243, 232, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3244, 232, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3245, 232, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3246, 232, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3247, 232, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3248, 232, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3249, 233, '2026-02-11', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3250, 233, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3251, 233, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3252, 233, '2026-02-08', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3253, 233, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3254, 233, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3255, 233, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3256, 233, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3257, 233, '2026-02-03', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3258, 233, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3259, 233, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3260, 233, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3261, 233, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3262, 233, '2026-01-29', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3263, 234, '2026-02-11', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3264, 234, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3265, 234, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3266, 234, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3267, 234, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3268, 234, '2026-02-06', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3269, 234, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3270, 234, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3271, 234, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3272, 234, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3273, 234, '2026-02-01', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3274, 234, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3275, 234, '2026-01-30', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3276, 234, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3277, 235, '2026-02-11', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3278, 235, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3279, 235, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3280, 235, '2026-02-08', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3281, 235, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3282, 235, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3283, 235, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3284, 235, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3285, 235, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3286, 235, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3287, 235, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3288, 235, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3289, 235, '2026-01-30', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3290, 235, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3291, 236, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3292, 236, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3293, 236, '2026-02-09', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3294, 236, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3295, 236, '2026-02-07', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3296, 236, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3297, 236, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3298, 236, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3299, 236, '2026-02-03', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3300, 236, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3301, 236, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3302, 236, '2026-01-31', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3303, 236, '2026-01-30', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3304, 236, '2026-01-29', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3305, 237, '2026-02-11', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3306, 237, '2026-02-10', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3307, 237, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3308, 237, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3309, 237, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3310, 237, '2026-02-06', 'excused', 'Excused absence', '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3311, 237, '2026-02-05', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3312, 237, '2026-02-04', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3313, 237, '2026-02-03', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3314, 237, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3315, 237, '2026-02-01', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3316, 237, '2026-01-31', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3317, 237, '2026-01-30', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3318, 237, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3319, 238, '2026-02-11', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3320, 238, '2026-02-10', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3321, 238, '2026-02-09', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3322, 238, '2026-02-08', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3323, 238, '2026-02-07', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3324, 238, '2026-02-06', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3325, 238, '2026-02-05', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3326, 238, '2026-02-04', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3327, 238, '2026-02-03', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3328, 238, '2026-02-02', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3329, 238, '2026-02-01', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3330, 238, '2026-01-31', 'absent', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3331, 238, '2026-01-30', 'late', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL), (3332, 238, '2026-01-29', 'present', NULL, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL); -- -------------------------------------------------------- -- -- Table structure for table `attendance_excuses` -- CREATE TABLE `attendance_excuses` ( `id` bigint(20) UNSIGNED NOT NULL, `attendance_id` bigint(20) UNSIGNED NOT NULL, `reason_code_id` bigint(20) UNSIGNED DEFAULT NULL, `excuse_text` text NOT NULL, `document_path` varchar(255) DEFAULT NULL, `status` enum('pending','approved','rejected') NOT NULL DEFAULT 'pending', `approved_at` timestamp NULL DEFAULT NULL, `reviewed_by` bigint(20) UNSIGNED DEFAULT NULL, `reviewed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cache` -- CREATE TABLE `cache` ( `key` varchar(255) NOT NULL, `value` mediumtext NOT NULL, `expiration` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cache` -- INSERT INTO `cache` (`key`, `value`, `expiration`) VALUES ('laravel-cache-accessibility_bypass_1', 'b:1;', 1771253069); INSERT INTO `cache` (`key`, `value`, `expiration`) VALUES ('laravel-cache-admin_dashboard_stats', 'a:27:{s:10:\"totalUsers\";i:34;s:13:\"totalStudents\";i:25;s:13:\"totalTeachers\";i:6;s:11:\"totalAdmins\";i:3;s:13:\"newUsersToday\";i:0;s:12:\"newUsersWeek\";i:0;s:12:\"totalCourses\";i:12;s:13:\"activeCourses\";i:12;s:14:\"totalOfferings\";i:12;s:16:\"currentOfferings\";i:12;s:16:\"totalEnrollments\";i:238;s:18:\"pendingEnrollments\";i:0;s:19:\"approvedEnrollments\";i:238;s:18:\"newEnrollmentsWeek\";i:0;s:12:\"totalRevenue\";s:7:\"5000.00\";s:12:\"revenueMonth\";s:7:\"5000.00\";s:15:\"pendingPayments\";i:0;s:13:\"pendingAmount\";i:0;s:15:\"currentSemester\";O:19:\"App\\Models\\Semester\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:9:\"semesters\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:1;s:16:\"academic_year_id\";i:2;s:7:\"name_en\";s:9:\"Fall 2025\";s:7:\"name_ar\";s:26:\"الفصل الأول 2025\";s:10:\"start_date\";s:10:\"2025-09-01\";s:8:\"end_date\";s:10:\"2025-12-20\";s:21:\"registration_end_date\";N;s:8:\"sequence\";i:1;s:10:\"is_current\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:19\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:19\";s:9:\"is_active\";i:0;s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:1;s:16:\"academic_year_id\";i:2;s:7:\"name_en\";s:9:\"Fall 2025\";s:7:\"name_ar\";s:26:\"الفصل الأول 2025\";s:10:\"start_date\";s:10:\"2025-09-01\";s:8:\"end_date\";s:10:\"2025-12-20\";s:21:\"registration_end_date\";N;s:8:\"sequence\";i:1;s:10:\"is_current\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:19\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:19\";s:9:\"is_active\";i:0;s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:10:\"start_date\";s:10:\"date:Y-m-d\";s:8:\"end_date\";s:10:\"date:Y-m-d\";s:10:\"is_current\";s:7:\"boolean\";s:9:\"is_active\";s:7:\"boolean\";s:8:\"sequence\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:21:\"registration_end_date\";s:4:\"date\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:16:\"academic_year_id\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:10:\"start_date\";i:4;s:8:\"end_date\";i:5;s:8:\"sequence\";i:6;s:10:\"is_current\";i:7;s:10:\"sort_order\";i:8;s:9:\"is_active\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:14:\"totalFaculties\";i:3;s:16:\"totalDepartments\";i:9;s:11:\"totalMajors\";i:5;s:20:\"activeSemestersCount\";i:0;s:17:\"recentEnrollments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:10:{i:0;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:102;s:10:\"student_id\";i:30;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:102;s:10:\"student_id\";i:30;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:30;s:4:\"name\";s:14:\"Mallie Osinski\";s:5:\"email\";s:22:\"chadrick80@example.net\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"miwxH5GzoK\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:30;s:4:\"name\";s:14:\"Mallie Osinski\";s:5:\"email\";s:22:\"chadrick80@example.net\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"miwxH5GzoK\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:21;s:7:\"user_id\";i:30;s:8:\"major_id\";i:3;s:17:\"student_id_number\";s:7:\"S039234\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"A-\";s:22:\"emergency_contact_name\";s:14:\"Hilda Schaefer\";s:23:\"emergency_contact_phone\";s:12:\"409.728.4812\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"4.00\";s:14:\"earned_credits\";i:101;s:17:\"attempted_credits\";i:13;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:21;s:7:\"user_id\";i:30;s:8:\"major_id\";i:3;s:17:\"student_id_number\";s:7:\"S039234\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"A-\";s:22:\"emergency_contact_name\";s:14:\"Hilda Schaefer\";s:23:\"emergency_contact_phone\";s:12:\"409.728.4812\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"4.00\";s:14:\"earned_credits\";i:101;s:17:\"attempted_credits\";i:13;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:5;s:9:\"course_id\";i:3;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:6;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:18;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS301-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:5;s:9:\"course_id\";i:3;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:6;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:18;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS301-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:3;s:4:\"code\";s:5:\"CS301\";s:7:\"name_en\";s:10:\"Algorithms\";s:7:\"name_ar\";s:22:\"الخوارزميات\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:3;s:4:\"code\";s:5:\"CS301\";s:7:\"name_en\";s:10:\"Algorithms\";s:7:\"name_ar\";s:22:\"الخوارزميات\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";O:19:\"App\\Models\\Semester\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:9:\"semesters\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:1;s:16:\"academic_year_id\";i:2;s:7:\"name_en\";s:9:\"Fall 2025\";s:7:\"name_ar\";s:26:\"الفصل الأول 2025\";s:10:\"start_date\";s:10:\"2025-09-01\";s:8:\"end_date\";s:10:\"2025-12-20\";s:21:\"registration_end_date\";N;s:8:\"sequence\";i:1;s:10:\"is_current\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:19\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:19\";s:9:\"is_active\";i:0;s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:1;s:16:\"academic_year_id\";i:2;s:7:\"name_en\";s:9:\"Fall 2025\";s:7:\"name_ar\";s:26:\"الفصل الأول 2025\";s:10:\"start_date\";s:10:\"2025-09-01\";s:8:\"end_date\";s:10:\"2025-12-20\";s:21:\"registration_end_date\";N;s:8:\"sequence\";i:1;s:10:\"is_current\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:19\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:19\";s:9:\"is_active\";i:0;s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:10:\"start_date\";s:10:\"date:Y-m-d\";s:8:\"end_date\";s:10:\"date:Y-m-d\";s:10:\"is_current\";s:7:\"boolean\";s:9:\"is_active\";s:7:\"boolean\";s:8:\"sequence\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:21:\"registration_end_date\";s:4:\"date\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:16:\"academic_year_id\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:10:\"start_date\";i:4;s:8:\"end_date\";i:5;s:8:\"sequence\";i:6;s:10:\"is_current\";i:7;s:10:\"sort_order\";i:8;s:9:\"is_active\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:103;s:10:\"student_id\";i:31;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:103;s:10:\"student_id\";i:31;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:31;s:4:\"name\";s:16:\"Raymond Thompson\";s:5:\"email\";s:20:\"horeilly@example.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"WfXkrzUSzB\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:31;s:4:\"name\";s:16:\"Raymond Thompson\";s:5:\"email\";s:20:\"horeilly@example.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"WfXkrzUSzB\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:22;s:7:\"user_id\";i:31;s:8:\"major_id\";i:4;s:17:\"student_id_number\";s:7:\"S038183\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"A-\";s:22:\"emergency_contact_name\";s:18:\"Walker Hilpert Jr.\";s:23:\"emergency_contact_phone\";s:14:\"(352) 600-3677\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.30\";s:14:\"earned_credits\";i:17;s:17:\"attempted_credits\";i:141;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:22;s:7:\"user_id\";i:31;s:8:\"major_id\";i:4;s:17:\"student_id_number\";s:7:\"S038183\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"A-\";s:22:\"emergency_contact_name\";s:18:\"Walker Hilpert Jr.\";s:23:\"emergency_contact_phone\";s:14:\"(352) 600-3677\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.30\";s:14:\"earned_credits\";i:17;s:17:\"attempted_credits\";i:141;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";r:349;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:104;s:10:\"student_id\";i:32;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:104;s:10:\"student_id\";i:32;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:32;s:4:\"name\";s:11:\"Claud Borer\";s:5:\"email\";s:24:\"roxane.kuhic@example.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"SAeXaQYceB\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:32;s:4:\"name\";s:11:\"Claud Borer\";s:5:\"email\";s:24:\"roxane.kuhic@example.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"SAeXaQYceB\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:23;s:7:\"user_id\";i:32;s:8:\"major_id\";i:1;s:17:\"student_id_number\";s:7:\"S036287\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"A-\";s:22:\"emergency_contact_name\";s:12:\"Deonte Lynch\";s:23:\"emergency_contact_phone\";s:12:\"470.727.0733\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"3.51\";s:14:\"earned_credits\";i:75;s:17:\"attempted_credits\";i:110;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:23;s:7:\"user_id\";i:32;s:8:\"major_id\";i:1;s:17:\"student_id_number\";s:7:\"S036287\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"A-\";s:22:\"emergency_contact_name\";s:12:\"Deonte Lynch\";s:23:\"emergency_contact_phone\";s:12:\"470.727.0733\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"3.51\";s:14:\"earned_credits\";i:75;s:17:\"attempted_credits\";i:110;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";r:349;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:105;s:10:\"student_id\";i:33;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:105;s:10:\"student_id\";i:33;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:33;s:4:\"name\";s:18:\"Reinhold Klein Sr.\";s:5:\"email\";s:20:\"omueller@example.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"nHKZUw174C\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:33;s:4:\"name\";s:18:\"Reinhold Klein Sr.\";s:5:\"email\";s:20:\"omueller@example.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"nHKZUw174C\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:24;s:7:\"user_id\";i:33;s:8:\"major_id\";i:3;s:17:\"student_id_number\";s:7:\"S034590\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"O+\";s:22:\"emergency_contact_name\";s:14:\"Felicity Feest\";s:23:\"emergency_contact_phone\";s:17:\"+1 (224) 216-3801\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"3.97\";s:14:\"earned_credits\";i:41;s:17:\"attempted_credits\";i:120;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:24;s:7:\"user_id\";i:33;s:8:\"major_id\";i:3;s:17:\"student_id_number\";s:7:\"S034590\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"O+\";s:22:\"emergency_contact_name\";s:14:\"Felicity Feest\";s:23:\"emergency_contact_phone\";s:17:\"+1 (224) 216-3801\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"3.97\";s:14:\"earned_credits\";i:41;s:17:\"attempted_credits\";i:120;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";r:349;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:106;s:10:\"student_id\";i:34;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:106;s:10:\"student_id\";i:34;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:34;s:4:\"name\";s:12:\"Alexis Boyer\";s:5:\"email\";s:20:\"brayan47@example.org\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"yi4ZG1nVPb\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:34;s:4:\"name\";s:12:\"Alexis Boyer\";s:5:\"email\";s:20:\"brayan47@example.org\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"yi4ZG1nVPb\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:25;s:7:\"user_id\";i:34;s:8:\"major_id\";i:5;s:17:\"student_id_number\";s:7:\"S035582\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"B+\";s:22:\"emergency_contact_name\";s:15:\"Mercedes Barton\";s:23:\"emergency_contact_phone\";s:14:\"1-413-219-4277\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.98\";s:14:\"earned_credits\";i:75;s:17:\"attempted_credits\";i:113;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:25;s:7:\"user_id\";i:34;s:8:\"major_id\";i:5;s:17:\"student_id_number\";s:7:\"S035582\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"B+\";s:22:\"emergency_contact_name\";s:15:\"Mercedes Barton\";s:23:\"emergency_contact_phone\";s:14:\"1-413-219-4277\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.98\";s:14:\"earned_credits\";i:75;s:17:\"attempted_credits\";i:113;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";r:349;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:5;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:107;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:107;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:10;s:4:\"name\";s:12:\"Ali Mohammed\";s:5:\"email\";s:15:\"ali@student.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:21\";s:8:\"password\";s:60:\"$2y$12$czMjSx0iSnBJJl5UQmJvkeEiDVlkzAoNSxyQLUZUSgTMacbeI/Hh6\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:10;s:4:\"name\";s:12:\"Ali Mohammed\";s:5:\"email\";s:15:\"ali@student.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:21\";s:8:\"password\";s:60:\"$2y$12$czMjSx0iSnBJJl5UQmJvkeEiDVlkzAoNSxyQLUZUSgTMacbeI/Hh6\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:1;s:7:\"user_id\";i:10;s:8:\"major_id\";i:1;s:17:\"student_id_number\";s:7:\"S000010\";s:15:\"enrollment_year\";s:4:\"2025\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";N;s:22:\"emergency_contact_name\";N;s:23:\"emergency_contact_phone\";N;s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"3.51\";s:14:\"earned_credits\";i:101;s:17:\"attempted_credits\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:1;s:7:\"user_id\";i:10;s:8:\"major_id\";i:1;s:17:\"student_id_number\";s:7:\"S000010\";s:15:\"enrollment_year\";s:4:\"2025\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";N;s:22:\"emergency_contact_name\";N;s:23:\"emergency_contact_phone\";N;s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"3.51\";s:14:\"earned_credits\";i:101;s:17:\"attempted_credits\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:6;s:9:\"course_id\";i:12;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:5;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:17;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS302-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:6;s:9:\"course_id\";i:12;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:5;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:17;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS302-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:12;s:4:\"code\";s:5:\"CS302\";s:7:\"name_en\";s:15:\"Web Development\";s:7:\"name_ar\";s:21:\"تطوير الويب\";s:14:\"description_en\";s:37:\"Frontend and backend web development.\";s:14:\"description_ar\";s:57:\"تطوير الويب من الواجهة والخادم.\";s:7:\"credits\";i:4;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:12;s:4:\"code\";s:5:\"CS302\";s:7:\"name_en\";s:15:\"Web Development\";s:7:\"name_ar\";s:21:\"تطوير الويب\";s:14:\"description_en\";s:37:\"Frontend and backend web development.\";s:14:\"description_ar\";s:57:\"تطوير الويب من الواجهة والخادم.\";s:7:\"credits\";i:4;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:488;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:6;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:108;s:10:\"student_id\";i:13;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:108;s:10:\"student_id\";i:13;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:13;s:4:\"name\";s:10:\"Lina Ahmed\";s:5:\"email\";s:16:\"lina@student.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$RJoDX4vZ.3aGpsKnBHIBAupSEL5Qg5s8VgG.4hobeW/ISpntS.w.O\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:13;s:4:\"name\";s:10:\"Lina Ahmed\";s:5:\"email\";s:16:\"lina@student.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$RJoDX4vZ.3aGpsKnBHIBAupSEL5Qg5s8VgG.4hobeW/ISpntS.w.O\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:4;s:7:\"user_id\";i:13;s:8:\"major_id\";i:4;s:17:\"student_id_number\";s:7:\"S000013\";s:15:\"enrollment_year\";s:4:\"2025\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";N;s:22:\"emergency_contact_name\";N;s:23:\"emergency_contact_phone\";N;s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.71\";s:14:\"earned_credits\";i:47;s:17:\"attempted_credits\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:4;s:7:\"user_id\";i:13;s:8:\"major_id\";i:4;s:17:\"student_id_number\";s:7:\"S000013\";s:15:\"enrollment_year\";s:4:\"2025\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";N;s:22:\"emergency_contact_name\";N;s:23:\"emergency_contact_phone\";N;s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.71\";s:14:\"earned_credits\";i:47;s:17:\"attempted_credits\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";r:1931;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:7;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:109;s:10:\"student_id\";i:14;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:109;s:10:\"student_id\";i:14;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:14;s:4:\"name\";s:12:\"Yousef Salem\";s:5:\"email\";s:18:\"yousef@student.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$AOtQPW27brrd.LX/pql8yOFAiGrnawnYbEvbOlGKw5WF.gUdPERL6\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:14;s:4:\"name\";s:12:\"Yousef Salem\";s:5:\"email\";s:18:\"yousef@student.com\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$AOtQPW27brrd.LX/pql8yOFAiGrnawnYbEvbOlGKw5WF.gUdPERL6\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:5;s:7:\"user_id\";i:14;s:8:\"major_id\";i:1;s:17:\"student_id_number\";s:7:\"S000014\";s:15:\"enrollment_year\";s:4:\"2025\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";N;s:22:\"emergency_contact_name\";N;s:23:\"emergency_contact_phone\";N;s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.57\";s:14:\"earned_credits\";i:104;s:17:\"attempted_credits\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:5;s:7:\"user_id\";i:14;s:8:\"major_id\";i:1;s:17:\"student_id_number\";s:7:\"S000014\";s:15:\"enrollment_year\";s:4:\"2025\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";N;s:22:\"emergency_contact_name\";N;s:23:\"emergency_contact_phone\";N;s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.57\";s:14:\"earned_credits\";i:104;s:17:\"attempted_credits\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";r:1931;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:8;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:110;s:10:\"student_id\";i:16;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:110;s:10:\"student_id\";i:16;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:16;s:4:\"name\";s:20:\"Ms. Jeanne Lakin PhD\";s:5:\"email\";s:30:\"guiseppe.daugherty@example.org\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"LyKxLe00mO\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:16;s:4:\"name\";s:20:\"Ms. Jeanne Lakin PhD\";s:5:\"email\";s:30:\"guiseppe.daugherty@example.org\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"LyKxLe00mO\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:7;s:7:\"user_id\";i:16;s:8:\"major_id\";i:4;s:17:\"student_id_number\";s:7:\"S022429\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"B+\";s:22:\"emergency_contact_name\";s:21:\"Dr. Myrtie Larkin DDS\";s:23:\"emergency_contact_phone\";s:17:\"+1 (907) 588-8141\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"3.45\";s:14:\"earned_credits\";i:116;s:17:\"attempted_credits\";i:34;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:7;s:7:\"user_id\";i:16;s:8:\"major_id\";i:4;s:17:\"student_id_number\";s:7:\"S022429\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"B+\";s:22:\"emergency_contact_name\";s:21:\"Dr. Myrtie Larkin DDS\";s:23:\"emergency_contact_phone\";s:17:\"+1 (907) 588-8141\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"3.45\";s:14:\"earned_credits\";i:116;s:17:\"attempted_credits\";i:34;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";r:1931;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:9;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:111;s:10:\"student_id\";i:19;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:111;s:10:\"student_id\";i:19;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"student\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:19;s:4:\"name\";s:20:\"Miss Maurine Toy DDS\";s:5:\"email\";s:19:\"orval34@example.org\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"pjeupRL2mB\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:19;s:4:\"name\";s:20:\"Miss Maurine Toy DDS\";s:5:\"email\";s:19:\"orval34@example.org\";s:17:\"email_verified_at\";s:19:\"2026-02-11 23:38:22\";s:8:\"password\";s:60:\"$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO\";s:6:\"locale\";s:2:\"en\";s:4:\"role\";s:7:\"student\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";s:10:\"pjeupRL2mB\";s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:7:\"profile\";N;s:14:\"studentProfile\";O:25:\"App\\Models\\StudentProfile\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"student_profiles\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:17:{s:2:\"id\";i:10;s:7:\"user_id\";i:19;s:8:\"major_id\";i:3;s:17:\"student_id_number\";s:7:\"S023772\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"A-\";s:22:\"emergency_contact_name\";s:14:\"Mr. Cole Lynch\";s:23:\"emergency_contact_phone\";s:14:\"(878) 680-6049\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.95\";s:14:\"earned_credits\";i:84;s:17:\"attempted_credits\";i:29;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:17:{s:2:\"id\";i:10;s:7:\"user_id\";i:19;s:8:\"major_id\";i:3;s:17:\"student_id_number\";s:7:\"S023772\";s:15:\"enrollment_year\";s:4:\"2026\";s:6:\"status\";s:6:\"active\";s:15:\"graduation_date\";N;s:10:\"blood_type\";s:2:\"A-\";s:22:\"emergency_contact_name\";s:14:\"Mr. Cole Lynch\";s:23:\"emergency_contact_phone\";s:14:\"(878) 680-6049\";s:26:\"emergency_contact_relation\";N;s:11:\"current_gpa\";s:4:\"2.95\";s:14:\"earned_credits\";i:84;s:17:\"attempted_credits\";i:29;s:10:\"created_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:22\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:15:\"graduation_date\";s:4:\"date\";s:15:\"enrollment_year\";s:7:\"integer\";s:11:\"current_gpa\";s:9:\"decimal:2\";s:14:\"earned_credits\";s:7:\"integer\";s:17:\"attempted_credits\";s:7:\"integer\";s:8:\"major_id\";s:7:\"integer\";s:7:\"user_id\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:13:{i:0;s:7:\"user_id\";i:1;s:8:\"major_id\";i:2;s:17:\"student_id_number\";i:3;s:15:\"enrollment_year\";i:4;s:6:\"status\";i:5;s:15:\"graduation_date\";i:6;s:10:\"blood_type\";i:7;s:22:\"emergency_contact_name\";i:8;s:23:\"emergency_contact_phone\";i:9;s:26:\"emergency_contact_relation\";i:10;s:11:\"current_gpa\";i:11;s:14:\"earned_credits\";i:12;s:17:\"attempted_credits\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"offering\";r:1931;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:19:\"recentAnnouncements\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:3:{i:0;O:23:\"App\\Models\\Announcement\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"announcements\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:18:{s:2:\"id\";i:3;s:8:\"title_en\";s:4:\"jgug\";s:8:\"title_ar\";s:3:\"vhv\";s:7:\"body_en\";s:9:\"bbjbkrrrr\";s:7:\"body_ar\";s:8:\"jbjrrrrr\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-15 00:00:00\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:0;s:12:\"is_published\";i:1;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-15 22:33:05\";s:10:\"updated_at\";s:19:\"2026-02-15 22:36:08\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:18:{s:2:\"id\";i:3;s:8:\"title_en\";s:4:\"jgug\";s:8:\"title_ar\";s:3:\"vhv\";s:7:\"body_en\";s:9:\"bbjbkrrrr\";s:7:\"body_ar\";s:8:\"jbjrrrrr\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-15 00:00:00\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:0;s:12:\"is_published\";i:1;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-15 22:33:05\";s:10:\"updated_at\";s:19:\"2026-02-15 22:36:08\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:6:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"expires_at\";s:8:\"datetime\";s:9:\"is_pinned\";s:7:\"boolean\";s:12:\"is_published\";s:7:\"boolean\";s:23:\"requires_acknowledgment\";s:7:\"boolean\";s:20:\"acknowledgment_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:8:\"title_en\";i:1;s:8:\"title_ar\";i:2;s:7:\"body_en\";i:3;s:7:\"body_ar\";i:4;s:5:\"scope\";i:5;s:9:\"target_id\";i:6;s:10:\"created_by\";i:7;s:12:\"published_at\";i:8;s:10:\"expires_at\";i:9;s:9:\"is_pinned\";i:10;s:12:\"is_published\";i:11;s:4:\"type\";i:12;s:8:\"audience\";i:13;s:23:\"requires_acknowledgment\";i:14;s:20:\"acknowledgment_count\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:1;O:23:\"App\\Models\\Announcement\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"announcements\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:18:{s:2:\"id\";i:1;s:8:\"title_en\";s:33:\"Welcome to the New Academic Year!\";s:8:\"title_ar\";s:54:\"مرحباً بالعام الدراسي الجديد!\";s:7:\"body_en\";s:108:\"We are excited to welcome all students and faculty to the 2025-2026 academic year. Registration is now open.\";s:7:\"body_ar\";s:164:\"يسعدنا استقبال جميع الطلاب وأعضاء هيئة التدريس في العام الدراسي 2025-2026. التسجيل مفتوح الآن.\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:1;s:12:\"is_published\";i:0;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:18:{s:2:\"id\";i:1;s:8:\"title_en\";s:33:\"Welcome to the New Academic Year!\";s:8:\"title_ar\";s:54:\"مرحباً بالعام الدراسي الجديد!\";s:7:\"body_en\";s:108:\"We are excited to welcome all students and faculty to the 2025-2026 academic year. Registration is now open.\";s:7:\"body_ar\";s:164:\"يسعدنا استقبال جميع الطلاب وأعضاء هيئة التدريس في العام الدراسي 2025-2026. التسجيل مفتوح الآن.\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:1;s:12:\"is_published\";i:0;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:6:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"expires_at\";s:8:\"datetime\";s:9:\"is_pinned\";s:7:\"boolean\";s:12:\"is_published\";s:7:\"boolean\";s:23:\"requires_acknowledgment\";s:7:\"boolean\";s:20:\"acknowledgment_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:8:\"title_en\";i:1;s:8:\"title_ar\";i:2;s:7:\"body_en\";i:3;s:7:\"body_ar\";i:4;s:5:\"scope\";i:5;s:9:\"target_id\";i:6;s:10:\"created_by\";i:7;s:12:\"published_at\";i:8;s:10:\"expires_at\";i:9;s:9:\"is_pinned\";i:10;s:12:\"is_published\";i:11;s:4:\"type\";i:12;s:8:\"audience\";i:13;s:23:\"requires_acknowledgment\";i:14;s:20:\"acknowledgment_count\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:2;O:23:\"App\\Models\\Announcement\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"announcements\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:18:{s:2:\"id\";i:2;s:8:\"title_en\";s:20:\"Library Hours Update\";s:8:\"title_ar\";s:38:\"تحديث مواعيد المكتبة\";s:7:\"body_en\";s:59:\"The main library will be open 24/7 during final exams week.\";s:7:\"body_ar\";s:143:\"ستكون المكتبة الرئيسية مفتوحة على مدار الساعة خلال أسبوع الامتحانات النهائية.\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-08 23:38:25\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:0;s:12:\"is_published\";i:0;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:18:{s:2:\"id\";i:2;s:8:\"title_en\";s:20:\"Library Hours Update\";s:8:\"title_ar\";s:38:\"تحديث مواعيد المكتبة\";s:7:\"body_en\";s:59:\"The main library will be open 24/7 during final exams week.\";s:7:\"body_ar\";s:143:\"ستكون المكتبة الرئيسية مفتوحة على مدار الساعة خلال أسبوع الامتحانات النهائية.\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-08 23:38:25\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:0;s:12:\"is_published\";i:0;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:6:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"expires_at\";s:8:\"datetime\";s:9:\"is_pinned\";s:7:\"boolean\";s:12:\"is_published\";s:7:\"boolean\";s:23:\"requires_acknowledgment\";s:7:\"boolean\";s:20:\"acknowledgment_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:8:\"title_en\";i:1;s:8:\"title_ar\";i:2;s:7:\"body_en\";i:3;s:7:\"body_ar\";i:4;s:5:\"scope\";i:5;s:9:\"target_id\";i:6;s:10:\"created_by\";i:7;s:12:\"published_at\";i:8;s:10:\"expires_at\";i:9;s:9:\"is_pinned\";i:10;s:12:\"is_published\";i:11;s:4:\"type\";i:12;s:8:\"audience\";i:13;s:23:\"requires_acknowledgment\";i:14;s:20:\"acknowledgment_count\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:15:\"todayAttendance\";i:0;s:10:\"recentLogs\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:5:{i:0;O:22:\"App\\Models\\ActivityLog\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"activity_logs\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:1596;s:7:\"user_id\";i:1;s:6:\"action\";s:5:\"login\";s:8:\"category\";s:4:\"auth\";s:14:\"description_en\";s:14:\"Visited: login\";s:14:\"description_ar\";s:13:\"زار: login\";s:7:\"details\";s:378:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 17:38:44\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:1596;s:7:\"user_id\";i:1;s:6:\"action\";s:5:\"login\";s:8:\"category\";s:4:\"auth\";s:14:\"description_en\";s:14:\"Visited: login\";s:14:\"description_ar\";s:13:\"زار: login\";s:7:\"details\";s:378:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\\/login\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"login\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Auth\\\\AuthenticatedSessionController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 17:38:44\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:3:{s:7:\"details\";s:5:\"array\";s:11:\"occurred_at\";s:20:\"datetime:Y-m-d H:i:s\";s:7:\"user_id\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:1:{s:4:\"user\";O:15:\"App\\Models\\User\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:5:\"users\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:1:{i:0;s:7:\"profile\";}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:1;s:4:\"name\";s:10:\"Admin User\";s:5:\"email\";s:17:\"admin@example.com\";s:17:\"email_verified_at\";N;s:8:\"password\";s:60:\"$2y$12$J1Ua199T1U4kdtpT9N4F/e6Ow/9gn1CpYh3YA2vXldBfo5gOiFMni\";s:6:\"locale\";s:2:\"ar\";s:4:\"role\";s:5:\"admin\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:18\";s:10:\"updated_at\";s:19:\"2026-02-12 17:36:18\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:1;s:4:\"name\";s:10:\"Admin User\";s:5:\"email\";s:17:\"admin@example.com\";s:17:\"email_verified_at\";N;s:8:\"password\";s:60:\"$2y$12$J1Ua199T1U4kdtpT9N4F/e6Ow/9gn1CpYh3YA2vXldBfo5gOiFMni\";s:6:\"locale\";s:2:\"ar\";s:4:\"role\";s:5:\"admin\";s:6:\"status\";s:6:\"active\";s:9:\"is_online\";i:0;s:13:\"last_login_at\";N;s:13:\"last_login_ip\";N;s:14:\"remember_token\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:18\";s:10:\"updated_at\";s:19:\"2026-02-12 17:36:18\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:17:\"email_verified_at\";s:8:\"datetime\";s:13:\"last_login_at\";s:8:\"datetime\";s:9:\"is_online\";s:7:\"boolean\";s:4:\"role\";s:6:\"string\";s:6:\"locale\";s:6:\"string\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:4:{i:0;s:25:\"unread_notification_count\";i:1;s:24:\"has_unread_notifications\";i:2;s:12:\"display_name\";i:3;s:10:\"avatar_url\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:1:{s:7:\"profile\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:2:{i:0;s:8:\"password\";i:1;s:14:\"remember_token\";}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:8:\"password\";i:3;s:4:\"role\";i:4;s:6:\"locale\";i:5;s:6:\"status\";i:6;s:9:\"is_online\";i:7;s:13:\"last_login_at\";i:8;s:13:\"last_login_ip\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:19:\"\0*\0authPasswordName\";s:8:\"password\";s:20:\"\0*\0rememberTokenName\";s:14:\"remember_token\";s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:0;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:7:\"user_id\";i:1;s:6:\"action\";i:2;s:8:\"category\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"details\";i:6;s:10:\"ip_address\";i:7;s:10:\"user_agent\";i:8;s:11:\"occurred_at\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:1;O:22:\"App\\Models\\ActivityLog\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"activity_logs\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:1597;s:7:\"user_id\";i:1;s:6:\"action\";s:9:\"dashboard\";s:8:\"category\";s:10:\"navigation\";s:14:\"description_en\";s:18:\"Visited: dashboard\";s:14:\"description_ar\";s:17:\"زار: dashboard\";s:7:\"details\";s:326:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 17:38:44\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:1597;s:7:\"user_id\";i:1;s:6:\"action\";s:9:\"dashboard\";s:8:\"category\";s:10:\"navigation\";s:14:\"description_en\";s:18:\"Visited: dashboard\";s:14:\"description_ar\";s:17:\"زار: dashboard\";s:7:\"details\";s:326:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"dashboard\",\"controller\":\"Closure\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 17:38:44\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:3:{s:7:\"details\";s:5:\"array\";s:11:\"occurred_at\";s:20:\"datetime:Y-m-d H:i:s\";s:7:\"user_id\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:1:{s:4:\"user\";r:3528;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:0;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:7:\"user_id\";i:1;s:6:\"action\";i:2;s:8:\"category\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"details\";i:6;s:10:\"ip_address\";i:7;s:10:\"user_agent\";i:8;s:11:\"occurred_at\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:2;O:22:\"App\\Models\\ActivityLog\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"activity_logs\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:1595;s:7:\"user_id\";i:1;s:6:\"action\";s:4:\"home\";s:8:\"category\";s:10:\"navigation\";s:14:\"description_en\";s:10:\"Visited: /\";s:14:\"description_ar\";s:9:\"زار: /\";s:7:\"details\";s:310:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"home\",\"controller\":\"Closure\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 17:38:43\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:1595;s:7:\"user_id\";i:1;s:6:\"action\";s:4:\"home\";s:8:\"category\";s:10:\"navigation\";s:14:\"description_en\";s:10:\"Visited: /\";s:14:\"description_ar\";s:9:\"زار: /\";s:7:\"details\";s:310:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":null,\"route_name\":\"home\",\"controller\":\"Closure\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 17:38:43\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:3:{s:7:\"details\";s:5:\"array\";s:11:\"occurred_at\";s:20:\"datetime:Y-m-d H:i:s\";s:7:\"user_id\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:1:{s:4:\"user\";r:3528;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:0;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:7:\"user_id\";i:1;s:6:\"action\";i:2;s:8:\"category\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"details\";i:6;s:10:\"ip_address\";i:7;s:10:\"user_agent\";i:8;s:11:\"occurred_at\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:3;O:22:\"App\\Models\\ActivityLog\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"activity_logs\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:1594;s:7:\"user_id\";i:1;s:6:\"action\";s:18:\"admin.users.create\";s:8:\"category\";s:5:\"admin\";s:14:\"description_en\";s:27:\"Visited: admin/users/create\";s:14:\"description_ar\";s:26:\"زار: admin/users/create\";s:7:\"details\";s:426:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 16:33:42\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:1594;s:7:\"user_id\";i:1;s:6:\"action\";s:18:\"admin.users.create\";s:8:\"category\";s:5:\"admin\";s:14:\"description_en\";s:27:\"Visited: admin/users/create\";s:14:\"description_ar\";s:26:\"زار: admin/users/create\";s:7:\"details\";s:426:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\\/create\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"route_name\":\"admin.users.create\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@create\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 16:33:42\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:3:{s:7:\"details\";s:5:\"array\";s:11:\"occurred_at\";s:20:\"datetime:Y-m-d H:i:s\";s:7:\"user_id\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:1:{s:4:\"user\";r:3528;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:0;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:7:\"user_id\";i:1;s:6:\"action\";i:2;s:8:\"category\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"details\";i:6;s:10:\"ip_address\";i:7;s:10:\"user_agent\";i:8;s:11:\"occurred_at\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:4;O:22:\"App\\Models\\ActivityLog\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"activity_logs\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:1593;s:7:\"user_id\";i:1;s:6:\"action\";s:17:\"admin.users.index\";s:8:\"category\";s:5:\"admin\";s:14:\"description_en\";s:17:\"Viewed users list\";s:14:\"description_ar\";s:38:\"عرض قائمة المستخدمين\";s:7:\"details\";s:420:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 16:33:38\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:1593;s:7:\"user_id\";i:1;s:6:\"action\";s:17:\"admin.users.index\";s:8:\"category\";s:5:\"admin\";s:14:\"description_en\";s:17:\"Viewed users list\";s:14:\"description_ar\";s:38:\"عرض قائمة المستخدمين\";s:7:\"details\";s:420:\"{\"url\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/users\",\"method\":\"GET\",\"ip\":\"127.0.0.1\",\"user_agent\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/145.0.0.0 Safari\\/537.36\",\"referer\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/dashboard\",\"route_name\":\"admin.users.index\",\"controller\":\"App\\\\Http\\\\Controllers\\\\Admin\\\\UserController@index\",\"session_id\":\"f5mnyu5zG4jHmeHL55FfA35V0BnvXr3J64tK1Cmv\"}\";s:10:\"ip_address\";s:9:\"127.0.0.1\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:11:\"occurred_at\";s:19:\"2026-02-16 16:33:38\";s:10:\"deleted_at\";N;s:10:\"created_at\";N;s:10:\"updated_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:3:{s:7:\"details\";s:5:\"array\";s:11:\"occurred_at\";s:20:\"datetime:Y-m-d H:i:s\";s:7:\"user_id\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:1:{s:4:\"user\";r:3528;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:0;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:7:\"user_id\";i:1;s:6:\"action\";i:2;s:8:\"category\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"details\";i:6;s:10:\"ip_address\";i:7;s:10:\"user_agent\";i:8;s:11:\"occurred_at\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}', 1771253024); INSERT INTO `cache` (`key`, `value`, `expiration`) VALUES ('laravel-cache-boost.roster.scan', 'a:2:{s:6:\"roster\";O:21:\"Laravel\\Roster\\Roster\":3:{s:13:\"\0*\0approaches\";O:29:\"Illuminate\\Support\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:11:\"\0*\0packages\";O:32:\"Laravel\\Roster\\PackageCollection\":2:{s:8:\"\0*\0items\";a:10:{i:0;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:1;s:13:\"\0*\0constraint\";s:5:\"^12.0\";s:10:\"\0*\0package\";E:37:\"Laravel\\Roster\\Enums\\Packages:LARAVEL\";s:14:\"\0*\0packageName\";s:17:\"laravel/framework\";s:10:\"\0*\0version\";s:7:\"12.44.0\";s:6:\"\0*\0dev\";b:0;}i:1;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:0;s:13:\"\0*\0constraint\";s:6:\"v0.3.8\";s:10:\"\0*\0package\";E:37:\"Laravel\\Roster\\Enums\\Packages:PROMPTS\";s:14:\"\0*\0packageName\";s:15:\"laravel/prompts\";s:10:\"\0*\0version\";s:5:\"0.3.8\";s:6:\"\0*\0dev\";b:0;}i:2;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:1;s:13:\"\0*\0constraint\";s:4:\"^2.3\";s:10:\"\0*\0package\";E:36:\"Laravel\\Roster\\Enums\\Packages:BREEZE\";s:14:\"\0*\0packageName\";s:14:\"laravel/breeze\";s:10:\"\0*\0version\";s:5:\"2.3.8\";s:6:\"\0*\0dev\";b:1;}i:3;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:0;s:13:\"\0*\0constraint\";s:6:\"v0.5.3\";s:10:\"\0*\0package\";E:33:\"Laravel\\Roster\\Enums\\Packages:MCP\";s:14:\"\0*\0packageName\";s:11:\"laravel/mcp\";s:10:\"\0*\0version\";s:5:\"0.5.3\";s:6:\"\0*\0dev\";b:1;}i:4;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:1;s:13:\"\0*\0constraint\";s:5:\"^1.24\";s:10:\"\0*\0package\";E:34:\"Laravel\\Roster\\Enums\\Packages:PINT\";s:14:\"\0*\0packageName\";s:12:\"laravel/pint\";s:10:\"\0*\0version\";s:6:\"1.26.0\";s:6:\"\0*\0dev\";b:1;}i:5;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:1;s:13:\"\0*\0constraint\";s:5:\"^1.41\";s:10:\"\0*\0package\";E:34:\"Laravel\\Roster\\Enums\\Packages:SAIL\";s:14:\"\0*\0packageName\";s:12:\"laravel/sail\";s:10:\"\0*\0version\";s:6:\"1.51.0\";s:6:\"\0*\0dev\";b:1;}i:6;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:1;s:13:\"\0*\0constraint\";s:4:\"^3.8\";s:10:\"\0*\0package\";E:34:\"Laravel\\Roster\\Enums\\Packages:PEST\";s:14:\"\0*\0packageName\";s:12:\"pestphp/pest\";s:10:\"\0*\0version\";s:5:\"3.8.4\";s:6:\"\0*\0dev\";b:1;}i:7;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:0;s:13:\"\0*\0constraint\";s:7:\"11.5.33\";s:10:\"\0*\0package\";E:37:\"Laravel\\Roster\\Enums\\Packages:PHPUNIT\";s:14:\"\0*\0packageName\";s:15:\"phpunit/phpunit\";s:10:\"\0*\0version\";s:7:\"11.5.33\";s:6:\"\0*\0dev\";b:1;}i:8;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:0;s:13:\"\0*\0constraint\";s:0:\"\";s:10:\"\0*\0package\";E:38:\"Laravel\\Roster\\Enums\\Packages:ALPINEJS\";s:14:\"\0*\0packageName\";s:8:\"alpinejs\";s:10:\"\0*\0version\";s:6:\"3.15.3\";s:6:\"\0*\0dev\";b:1;}i:9;O:22:\"Laravel\\Roster\\Package\":6:{s:9:\"\0*\0direct\";b:0;s:13:\"\0*\0constraint\";s:0:\"\";s:10:\"\0*\0package\";E:41:\"Laravel\\Roster\\Enums\\Packages:TAILWINDCSS\";s:14:\"\0*\0packageName\";s:11:\"tailwindcss\";s:10:\"\0*\0version\";s:6:\"3.4.19\";s:6:\"\0*\0dev\";b:1;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:21:\"\0*\0nodePackageManager\";E:43:\"Laravel\\Roster\\Enums\\NodePackageManager:NPM\";}s:9:\"timestamp\";i:1771246483;}', 1771332883); INSERT INTO `cache` (`key`, `value`, `expiration`) VALUES ('laravel-cache-student_dashboard_10', 'a:10:{s:5:\"stats\";a:9:{s:16:\"enrolled_courses\";i:12;s:20:\"upcoming_assessments\";i:0;s:19:\"pending_submissions\";i:0;s:20:\"unread_notifications\";i:0;s:15:\"total_materials\";i:57;s:19:\"progress_percentage\";d:0;s:26:\"total_activities_completed\";i:0;s:13:\"pending_tasks\";i:0;s:13:\"overdue_items\";i:1;}s:19:\"upcomingAssessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:19:\"recentAnnouncements\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:3:{i:0;O:23:\"App\\Models\\Announcement\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"announcements\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:18:{s:2:\"id\";i:3;s:8:\"title_en\";s:4:\"jgug\";s:8:\"title_ar\";s:3:\"vhv\";s:7:\"body_en\";s:9:\"bbjbkrrrr\";s:7:\"body_ar\";s:8:\"jbjrrrrr\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-15 00:00:00\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:0;s:12:\"is_published\";i:1;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-15 22:33:05\";s:10:\"updated_at\";s:19:\"2026-02-15 22:36:08\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:18:{s:2:\"id\";i:3;s:8:\"title_en\";s:4:\"jgug\";s:8:\"title_ar\";s:3:\"vhv\";s:7:\"body_en\";s:9:\"bbjbkrrrr\";s:7:\"body_ar\";s:8:\"jbjrrrrr\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-15 00:00:00\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:0;s:12:\"is_published\";i:1;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-15 22:33:05\";s:10:\"updated_at\";s:19:\"2026-02-15 22:36:08\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:6:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"expires_at\";s:8:\"datetime\";s:9:\"is_pinned\";s:7:\"boolean\";s:12:\"is_published\";s:7:\"boolean\";s:23:\"requires_acknowledgment\";s:7:\"boolean\";s:20:\"acknowledgment_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:8:\"title_en\";i:1;s:8:\"title_ar\";i:2;s:7:\"body_en\";i:3;s:7:\"body_ar\";i:4;s:5:\"scope\";i:5;s:9:\"target_id\";i:6;s:10:\"created_by\";i:7;s:12:\"published_at\";i:8;s:10:\"expires_at\";i:9;s:9:\"is_pinned\";i:10;s:12:\"is_published\";i:11;s:4:\"type\";i:12;s:8:\"audience\";i:13;s:23:\"requires_acknowledgment\";i:14;s:20:\"acknowledgment_count\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:1;O:23:\"App\\Models\\Announcement\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"announcements\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:18:{s:2:\"id\";i:1;s:8:\"title_en\";s:33:\"Welcome to the New Academic Year!\";s:8:\"title_ar\";s:54:\"مرحباً بالعام الدراسي الجديد!\";s:7:\"body_en\";s:108:\"We are excited to welcome all students and faculty to the 2025-2026 academic year. Registration is now open.\";s:7:\"body_ar\";s:164:\"يسعدنا استقبال جميع الطلاب وأعضاء هيئة التدريس في العام الدراسي 2025-2026. التسجيل مفتوح الآن.\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:1;s:12:\"is_published\";i:0;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:18:{s:2:\"id\";i:1;s:8:\"title_en\";s:33:\"Welcome to the New Academic Year!\";s:8:\"title_ar\";s:54:\"مرحباً بالعام الدراسي الجديد!\";s:7:\"body_en\";s:108:\"We are excited to welcome all students and faculty to the 2025-2026 academic year. Registration is now open.\";s:7:\"body_ar\";s:164:\"يسعدنا استقبال جميع الطلاب وأعضاء هيئة التدريس في العام الدراسي 2025-2026. التسجيل مفتوح الآن.\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:1;s:12:\"is_published\";i:0;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:6:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"expires_at\";s:8:\"datetime\";s:9:\"is_pinned\";s:7:\"boolean\";s:12:\"is_published\";s:7:\"boolean\";s:23:\"requires_acknowledgment\";s:7:\"boolean\";s:20:\"acknowledgment_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:8:\"title_en\";i:1;s:8:\"title_ar\";i:2;s:7:\"body_en\";i:3;s:7:\"body_ar\";i:4;s:5:\"scope\";i:5;s:9:\"target_id\";i:6;s:10:\"created_by\";i:7;s:12:\"published_at\";i:8;s:10:\"expires_at\";i:9;s:9:\"is_pinned\";i:10;s:12:\"is_published\";i:11;s:4:\"type\";i:12;s:8:\"audience\";i:13;s:23:\"requires_acknowledgment\";i:14;s:20:\"acknowledgment_count\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:2;O:23:\"App\\Models\\Announcement\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:13:\"announcements\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:18:{s:2:\"id\";i:2;s:8:\"title_en\";s:20:\"Library Hours Update\";s:8:\"title_ar\";s:38:\"تحديث مواعيد المكتبة\";s:7:\"body_en\";s:59:\"The main library will be open 24/7 during final exams week.\";s:7:\"body_ar\";s:143:\"ستكون المكتبة الرئيسية مفتوحة على مدار الساعة خلال أسبوع الامتحانات النهائية.\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-08 23:38:25\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:0;s:12:\"is_published\";i:0;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:18:{s:2:\"id\";i:2;s:8:\"title_en\";s:20:\"Library Hours Update\";s:8:\"title_ar\";s:38:\"تحديث مواعيد المكتبة\";s:7:\"body_en\";s:59:\"The main library will be open 24/7 during final exams week.\";s:7:\"body_ar\";s:143:\"ستكون المكتبة الرئيسية مفتوحة على مدار الساعة خلال أسبوع الامتحانات النهائية.\";s:4:\"type\";s:7:\"general\";s:8:\"audience\";s:3:\"all\";s:5:\"scope\";s:6:\"system\";s:9:\"target_id\";N;s:10:\"created_by\";i:1;s:12:\"published_at\";s:19:\"2026-02-08 23:38:25\";s:10:\"expires_at\";N;s:9:\"is_pinned\";i:0;s:12:\"is_published\";i:0;s:23:\"requires_acknowledgment\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:6:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"expires_at\";s:8:\"datetime\";s:9:\"is_pinned\";s:7:\"boolean\";s:12:\"is_published\";s:7:\"boolean\";s:23:\"requires_acknowledgment\";s:7:\"boolean\";s:20:\"acknowledgment_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:8:\"title_en\";i:1;s:8:\"title_ar\";i:2;s:7:\"body_en\";i:3;s:7:\"body_ar\";i:4;s:5:\"scope\";i:5;s:9:\"target_id\";i:6;s:10:\"created_by\";i:7;s:12:\"published_at\";i:8;s:10:\"expires_at\";i:9;s:9:\"is_pinned\";i:10;s:12:\"is_published\";i:11;s:4:\"type\";i:12;s:8:\"audience\";i:13;s:23:\"requires_acknowledgment\";i:14;s:20:\"acknowledgment_count\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:11:\"enrollments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:12:{i:0;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:1;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:1;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:1;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:1;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:1;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:6;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:24;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS101-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS101-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS101-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:1;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:6;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:24;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS101-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS101-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS101-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:1;s:4:\"code\";s:5:\"CS101\";s:7:\"name_en\";s:27:\"Introduction to Programming\";s:7:\"name_ar\";s:30:\"مقدمة في البرمجة\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:1;s:4:\"code\";s:5:\"CS101\";s:7:\"name_en\";s:27:\"Introduction to Programming\";s:7:\"name_ar\";s:30:\"مقدمة في البرمجة\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";O:19:\"App\\Models\\Semester\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:9:\"semesters\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:1;s:16:\"academic_year_id\";i:2;s:7:\"name_en\";s:9:\"Fall 2025\";s:7:\"name_ar\";s:26:\"الفصل الأول 2025\";s:10:\"start_date\";s:10:\"2025-09-01\";s:8:\"end_date\";s:10:\"2025-12-20\";s:21:\"registration_end_date\";N;s:8:\"sequence\";i:1;s:10:\"is_current\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:19\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:19\";s:9:\"is_active\";i:0;s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:1;s:16:\"academic_year_id\";i:2;s:7:\"name_en\";s:9:\"Fall 2025\";s:7:\"name_ar\";s:26:\"الفصل الأول 2025\";s:10:\"start_date\";s:10:\"2025-09-01\";s:8:\"end_date\";s:10:\"2025-12-20\";s:21:\"registration_end_date\";N;s:8:\"sequence\";i:1;s:10:\"is_current\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:19\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:19\";s:9:\"is_active\";i:0;s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:10:\"start_date\";s:10:\"date:Y-m-d\";s:8:\"end_date\";s:10:\"date:Y-m-d\";s:10:\"is_current\";s:7:\"boolean\";s:9:\"is_active\";s:7:\"boolean\";s:8:\"sequence\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:21:\"registration_end_date\";s:4:\"date\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:1:{s:12:\"academicYear\";O:23:\"App\\Models\\AcademicYear\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:14:\"academic_years\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:9:{s:2:\"id\";i:2;s:13:\"year_label_en\";s:9:\"2025-2026\";s:13:\"year_label_ar\";s:9:\"2025-2026\";s:10:\"start_date\";s:10:\"2025-09-01\";s:8:\"end_date\";s:10:\"2026-06-30\";s:10:\"is_current\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:19\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:19\";}s:11:\"\0*\0original\";a:9:{s:2:\"id\";i:2;s:13:\"year_label_en\";s:9:\"2025-2026\";s:13:\"year_label_ar\";s:9:\"2025-2026\";s:10:\"start_date\";s:10:\"2025-09-01\";s:8:\"end_date\";s:10:\"2026-06-30\";s:10:\"is_current\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:19\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:19\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:10:\"start_date\";s:10:\"date:Y-m-d\";s:8:\"end_date\";s:10:\"date:Y-m-d\";s:10:\"is_current\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:5:\"label\";i:1;s:15:\"formatted_range\";i:2;s:15:\"duration_months\";i:3;s:19:\"progress_percentage\";i:4;s:12:\"status_badge\";i:5;s:12:\"status_color\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:7:{i:0;s:13:\"year_label_en\";i:1;s:13:\"year_label_ar\";i:2;s:10:\"start_date\";i:3;s:8:\"end_date\";i:4;s:10:\"is_current\";i:5;s:5:\"notes\";i:6;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:16:\"academic_year_id\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:10:\"start_date\";i:4;s:8:\"end_date\";i:5;s:8:\"sequence\";i:6;s:10:\"is_current\";i:7;s:10:\"sort_order\";i:8;s:9:\"is_active\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:4:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:1;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";s:27:\"Reference Material - Week 1\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 1\";s:14:\"description_en\";s:29:\"Porro labore ducimus quod ad.\";s:14:\"description_ar\";s:63:\"Dignissimos quia laudantium aspernatur est quibusdam et itaque.\";s:9:\"file_path\";s:50:\"materials/68e3ccb9-2143-31f4-bee4-ca407cf004c1.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:27802851;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-16 23:38:38\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:1;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";s:27:\"Reference Material - Week 1\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 1\";s:14:\"description_en\";s:29:\"Porro labore ducimus quod ad.\";s:14:\"description_ar\";s:63:\"Dignissimos quia laudantium aspernatur est quibusdam et itaque.\";s:9:\"file_path\";s:50:\"materials/68e3ccb9-2143-31f4-bee4-ca407cf004c1.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:27802851;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-16 23:38:38\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:2;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";s:25:\"Practice Problem - Week 2\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 2\";s:14:\"description_en\";s:28:\"Non qui praesentium non non.\";s:14:\"description_ar\";s:48:\"Eum eum perspiciatis hic minima ducimus impedit.\";s:9:\"file_path\";s:50:\"materials/e22a36e8-52ff-3e6f-bd27-be24a8ff54cd.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:33221119;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-23 23:38:38\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:2;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";s:25:\"Practice Problem - Week 2\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 2\";s:14:\"description_en\";s:28:\"Non qui praesentium non non.\";s:14:\"description_ar\";s:48:\"Eum eum perspiciatis hic minima ducimus impedit.\";s:9:\"file_path\";s:50:\"materials/e22a36e8-52ff-3e6f-bd27-be24a8ff54cd.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:33221119;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-23 23:38:38\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:3;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";s:22:\"Lecture Notes - Week 3\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 3\";s:14:\"description_en\";s:30:\"Possimus et dicta velit nihil.\";s:14:\"description_ar\";s:70:\"Nisi aliquam saepe explicabo veritatis voluptas provident error autem.\";s:9:\"file_path\";s:50:\"materials/6d82340b-f33e-3ab1-ac0e-d3e4d1b66727.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:22434926;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:38\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:3;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";s:22:\"Lecture Notes - Week 3\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 3\";s:14:\"description_en\";s:30:\"Possimus et dicta velit nihil.\";s:14:\"description_ar\";s:70:\"Nisi aliquam saepe explicabo veritatis voluptas provident error autem.\";s:9:\"file_path\";s:50:\"materials/6d82340b-f33e-3ab1-ac0e-d3e4d1b66727.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:22434926;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:38\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:38\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:4;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";s:27:\"Reference Material - Week 4\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 4\";s:14:\"description_en\";s:33:\"Voluptas quisquam veritatis enim.\";s:14:\"description_ar\";s:41:\"Consequatur soluta itaque inventore iure.\";s:9:\"file_path\";s:50:\"materials/8c2cc900-c132-3b01-8838-79909d626fec.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:45787404;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-06 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:4;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";s:27:\"Reference Material - Week 4\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 4\";s:14:\"description_en\";s:33:\"Voluptas quisquam veritatis enim.\";s:14:\"description_ar\";s:41:\"Consequatur soluta itaque inventore iure.\";s:9:\"file_path\";s:50:\"materials/8c2cc900-c132-3b01-8838-79909d626fec.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:45787404;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-06 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:24;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:2;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:24;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:2;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:2;s:9:\"course_id\";i:10;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:5;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:20;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS102-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS102-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS102-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:2;s:9:\"course_id\";i:10;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:5;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:20;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS102-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS102-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS102-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:10;s:4:\"code\";s:5:\"CS102\";s:7:\"name_en\";s:24:\"Programming Fundamentals\";s:7:\"name_ar\";s:29:\"أساسيات البرمجة\";s:14:\"description_en\";s:50:\"Introduction to programming concepts using Python.\";s:14:\"description_ar\";s:74:\"مقدمة في مفاهيم البرمجة باستخدام بايثون.\";s:7:\"credits\";i:4;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:10;s:4:\"code\";s:5:\"CS102\";s:7:\"name_en\";s:24:\"Programming Fundamentals\";s:7:\"name_ar\";s:29:\"أساسيات البرمجة\";s:14:\"description_en\";s:50:\"Introduction to programming concepts using Python.\";s:14:\"description_ar\";s:74:\"مقدمة في مفاهيم البرمجة باستخدام بايثون.\";s:7:\"credits\";i:4;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:1:{i:0;O:21:\"App\\Models\\Assessment\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"assessments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:24:{s:2:\"id\";i:1;s:18:\"course_offering_id\";i:2;s:18:\"assessment_type_id\";i:4;s:8:\"title_en\";s:4:\"test\";s:8:\"title_ar\";s:6:\"testAR\";s:14:\"description_en\";s:3:\"ggg\";s:14:\"description_ar\";s:2:\"bb\";s:8:\"due_date\";s:19:\"2026-02-16 01:32:00\";s:9:\"max_marks\";s:5:\"90.00\";s:6:\"weight\";N;s:12:\"is_published\";i:0;s:21:\"allow_late_submission\";i:0;s:8:\"is_timed\";i:0;s:21:\"quiz_duration_minutes\";N;s:23:\"allow_multiple_attempts\";i:0;s:12:\"max_attempts\";N;s:20:\"show_correct_answers\";i:0;s:10:\"sort_order\";i:0;s:12:\"published_at\";N;s:10:\"created_at\";s:19:\"2026-02-16 01:32:46\";s:10:\"updated_at\";s:19:\"2026-02-16 01:32:46\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:6:\"submit\";}s:11:\"\0*\0original\";a:24:{s:2:\"id\";i:1;s:18:\"course_offering_id\";i:2;s:18:\"assessment_type_id\";i:4;s:8:\"title_en\";s:4:\"test\";s:8:\"title_ar\";s:6:\"testAR\";s:14:\"description_en\";s:3:\"ggg\";s:14:\"description_ar\";s:2:\"bb\";s:8:\"due_date\";s:19:\"2026-02-16 01:32:00\";s:9:\"max_marks\";s:5:\"90.00\";s:6:\"weight\";N;s:12:\"is_published\";i:0;s:21:\"allow_late_submission\";i:0;s:8:\"is_timed\";i:0;s:21:\"quiz_duration_minutes\";N;s:23:\"allow_multiple_attempts\";i:0;s:12:\"max_attempts\";N;s:20:\"show_correct_answers\";i:0;s:10:\"sort_order\";i:0;s:12:\"published_at\";N;s:10:\"created_at\";s:19:\"2026-02-16 01:32:46\";s:10:\"updated_at\";s:19:\"2026-02-16 01:32:46\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:6:\"submit\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:13:{s:8:\"due_date\";s:8:\"datetime\";s:12:\"published_at\";s:8:\"datetime\";s:9:\"max_marks\";s:9:\"decimal:2\";s:6:\"weight\";s:9:\"decimal:2\";s:12:\"is_published\";s:7:\"boolean\";s:21:\"allow_late_submission\";s:7:\"boolean\";s:8:\"is_timed\";s:7:\"boolean\";s:23:\"allow_multiple_attempts\";s:7:\"boolean\";s:20:\"show_correct_answers\";s:7:\"boolean\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:21:\"quiz_duration_minutes\";s:7:\"integer\";s:12:\"max_attempts\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:1:{s:4:\"type\";O:25:\"App\\Models\\AssessmentType\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"assessment_types\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:10:{s:2:\"id\";i:4;s:7:\"name_en\";s:10:\"Assignment\";s:7:\"name_ar\";s:8:\"واجب\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:9:\"is_graded\";i:1;s:11:\"affects_gpa\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";}s:11:\"\0*\0original\";a:10:{s:2:\"id\";i:4;s:7:\"name_en\";s:10:\"Assignment\";s:7:\"name_ar\";s:8:\"واجب\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:9:\"is_graded\";i:1;s:11:\"affects_gpa\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:25\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:25\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:9:\"is_graded\";s:7:\"boolean\";s:11:\"affects_gpa\";s:7:\"boolean\";s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:7:\"name_en\";i:1;s:7:\"name_ar\";i:2;s:14:\"description_en\";i:3;s:14:\"description_ar\";i:4;s:12:\"grading_type\";i:5;s:9:\"is_graded\";i:6;s:11:\"affects_gpa\";i:7;s:10:\"sort_order\";i:8;s:9:\"is_active\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:20:{i:0;s:18:\"course_offering_id\";i:1;s:18:\"assessment_type_id\";i:2;s:8:\"title_en\";i:3;s:8:\"title_ar\";i:4;s:14:\"description_en\";i:5;s:14:\"description_ar\";i:6;s:8:\"due_date\";i:7;s:9:\"max_marks\";i:8;s:6:\"weight\";i:9;s:12:\"is_published\";i:10;s:21:\"allow_late_submission\";i:11;s:12:\"published_at\";i:12;s:10:\"sort_order\";i:13;s:21:\"quiz_duration_minutes\";i:14;s:8:\"is_timed\";i:15;s:23:\"allow_multiple_attempts\";i:16;s:12:\"max_attempts\";i:17;s:20:\"show_correct_answers\";i:18;s:19:\"requires_completion\";i:19;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:4:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:5;s:18:\"course_offering_id\";i:2;s:8:\"title_en\";s:27:\"Reading Assignment - Week 1\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 1\";s:14:\"description_en\";s:50:\"Distinctio voluptas laborum consequatur molestias.\";s:14:\"description_ar\";s:37:\"Quo quod amet autem repellendus modi.\";s:9:\"file_path\";s:50:\"materials/85111908-0a9a-3244-ad96-a5b640ccb765.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:32577609;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-04 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:5;s:18:\"course_offering_id\";i:2;s:8:\"title_en\";s:27:\"Reading Assignment - Week 1\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 1\";s:14:\"description_en\";s:50:\"Distinctio voluptas laborum consequatur molestias.\";s:14:\"description_ar\";s:37:\"Quo quod amet autem repellendus modi.\";s:9:\"file_path\";s:50:\"materials/85111908-0a9a-3244-ad96-a5b640ccb765.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:32577609;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-04 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:6;s:18:\"course_offering_id\";i:2;s:8:\"title_en\";s:20:\"Study Guide - Week 2\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 2\";s:14:\"description_en\";s:63:\"Laudantium temporibus consequatur atque sunt molestiae tempore.\";s:14:\"description_ar\";s:30:\"Est est nemo labore dicta non.\";s:9:\"file_path\";s:50:\"materials/7f2b6d7f-5035-3330-b619-a5e0b7ffb92d.png\";s:9:\"file_type\";s:3:\"png\";s:9:\"file_size\";i:26861725;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-09 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:6;s:18:\"course_offering_id\";i:2;s:8:\"title_en\";s:20:\"Study Guide - Week 2\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 2\";s:14:\"description_en\";s:63:\"Laudantium temporibus consequatur atque sunt molestiae tempore.\";s:14:\"description_ar\";s:30:\"Est est nemo labore dicta non.\";s:9:\"file_path\";s:50:\"materials/7f2b6d7f-5035-3330-b619-a5e0b7ffb92d.png\";s:9:\"file_type\";s:3:\"png\";s:9:\"file_size\";i:26861725;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-09 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:7;s:18:\"course_offering_id\";i:2;s:8:\"title_en\";s:19:\" worksheet - Week 3\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 3\";s:14:\"description_en\";s:33:\"Id omnis tempore earum quos sunt.\";s:14:\"description_ar\";s:33:\"Quo nobis quaerat ut dolorem vel.\";s:9:\"file_path\";s:50:\"materials/356a0898-6275-39b1-aa5b-b5e160e37a16.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:42685531;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-21 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:7;s:18:\"course_offering_id\";i:2;s:8:\"title_en\";s:19:\" worksheet - Week 3\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 3\";s:14:\"description_en\";s:33:\"Id omnis tempore earum quos sunt.\";s:14:\"description_ar\";s:33:\"Quo nobis quaerat ut dolorem vel.\";s:9:\"file_path\";s:50:\"materials/356a0898-6275-39b1-aa5b-b5e160e37a16.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:42685531;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-21 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:8;s:18:\"course_offering_id\";i:2;s:8:\"title_en\";s:19:\" worksheet - Week 4\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 4\";s:14:\"description_en\";s:41:\"Nulla nulla commodi quam numquam commodi.\";s:14:\"description_ar\";s:20:\"Libero et amet quia.\";s:9:\"file_path\";s:50:\"materials/a185a036-6748-33ff-a202-baf1e0297347.jpg\";s:9:\"file_type\";s:3:\"jpg\";s:9:\"file_size\";i:35026865;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-07 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:8;s:18:\"course_offering_id\";i:2;s:8:\"title_en\";s:19:\" worksheet - Week 4\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 4\";s:14:\"description_en\";s:41:\"Nulla nulla commodi quam numquam commodi.\";s:14:\"description_ar\";s:20:\"Libero et amet quia.\";s:9:\"file_path\";s:50:\"materials/a185a036-6748-33ff-a202-baf1e0297347.jpg\";s:9:\"file_type\";s:3:\"jpg\";s:9:\"file_size\";i:35026865;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-07 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:44;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:3;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:44;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:3;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:3;s:9:\"course_id\";i:2;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:9;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:23;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS201-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS201-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS201-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:3;s:9:\"course_id\";i:2;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:9;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:23;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS201-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS201-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS201-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:2;s:4:\"code\";s:5:\"CS201\";s:7:\"name_en\";s:15:\"Data Structures\";s:7:\"name_ar\";s:27:\"هياكل البيانات\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:2;s:4:\"code\";s:5:\"CS201\";s:7:\"name_en\";s:15:\"Data Structures\";s:7:\"name_ar\";s:27:\"هياكل البيانات\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:6:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:9;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reading Assignment - Week 1\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 1\";s:14:\"description_en\";s:21:\"Enim ut impedit eius.\";s:14:\"description_ar\";s:58:\"Iste deleniti cum quidem soluta aut adipisci eveniet esse.\";s:9:\"file_path\";s:50:\"materials/0f5a71ec-ad77-3888-84a5-5e0e878b5511.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:12486011;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-01 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:9;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reading Assignment - Week 1\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 1\";s:14:\"description_en\";s:21:\"Enim ut impedit eius.\";s:14:\"description_ar\";s:58:\"Iste deleniti cum quidem soluta aut adipisci eveniet esse.\";s:9:\"file_path\";s:50:\"materials/0f5a71ec-ad77-3888-84a5-5e0e878b5511.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:12486011;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-01 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:10;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reference Material - Week 2\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 2\";s:14:\"description_en\";s:31:\"Sit possimus et sapiente optio.\";s:14:\"description_ar\";s:46:\"Occaecati praesentium veniam nihil distinctio.\";s:9:\"file_path\";s:50:\"materials/4f41929a-ab06-3fa2-9322-0cf1140e0ef4.doc\";s:9:\"file_type\";s:3:\"doc\";s:9:\"file_size\";i:44644150;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-04 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:10;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reference Material - Week 2\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 2\";s:14:\"description_en\";s:31:\"Sit possimus et sapiente optio.\";s:14:\"description_ar\";s:46:\"Occaecati praesentium veniam nihil distinctio.\";s:9:\"file_path\";s:50:\"materials/4f41929a-ab06-3fa2-9322-0cf1140e0ef4.doc\";s:9:\"file_type\";s:3:\"doc\";s:9:\"file_size\";i:44644150;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-04 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:11;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:25:\"Practice Problem - Week 3\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 3\";s:14:\"description_en\";s:37:\"Quisquam temporibus ut deserunt quos.\";s:14:\"description_ar\";s:61:\"Quo aliquam dolorem quo minus similique saepe est voluptates.\";s:9:\"file_path\";s:51:\"materials/d6e581d0-9901-3df7-9923-4f06559d864d.pptx\";s:9:\"file_type\";s:4:\"pptx\";s:9:\"file_size\";i:47597417;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-03 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:11;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:25:\"Practice Problem - Week 3\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 3\";s:14:\"description_en\";s:37:\"Quisquam temporibus ut deserunt quos.\";s:14:\"description_ar\";s:61:\"Quo aliquam dolorem quo minus similique saepe est voluptates.\";s:9:\"file_path\";s:51:\"materials/d6e581d0-9901-3df7-9923-4f06559d864d.pptx\";s:9:\"file_type\";s:4:\"pptx\";s:9:\"file_size\";i:47597417;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-03 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:12;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reading Assignment - Week 4\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 4\";s:14:\"description_en\";s:69:\"Ratione dolores quis dicta veniam perspiciatis est iusto repudiandae.\";s:14:\"description_ar\";s:44:\"Nihil voluptas recusandae aliquid eos quasi.\";s:9:\"file_path\";s:50:\"materials/2f62c8ef-bada-35b0-9873-766c3092b418.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:45689844;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-26 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:12;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reading Assignment - Week 4\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 4\";s:14:\"description_en\";s:69:\"Ratione dolores quis dicta veniam perspiciatis est iusto repudiandae.\";s:14:\"description_ar\";s:44:\"Nihil voluptas recusandae aliquid eos quasi.\";s:9:\"file_path\";s:50:\"materials/2f62c8ef-bada-35b0-9873-766c3092b418.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:45689844;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-26 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:13;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reference Material - Week 5\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 5\";s:14:\"description_en\";s:62:\"Tempore et velit et sint architecto iste mollitia repellendus.\";s:14:\"description_ar\";s:44:\"Et optio ad rerum et maiores sunt illum vel.\";s:9:\"file_path\";s:50:\"materials/818ab3ba-85e0-3a0a-bdd8-745ae1f71e40.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:12240330;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-17 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:13;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reference Material - Week 5\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 5\";s:14:\"description_en\";s:62:\"Tempore et velit et sint architecto iste mollitia repellendus.\";s:14:\"description_ar\";s:44:\"Et optio ad rerum et maiores sunt illum vel.\";s:9:\"file_path\";s:50:\"materials/818ab3ba-85e0-3a0a-bdd8-745ae1f71e40.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:12240330;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-17 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:5;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:14;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reading Assignment - Week 6\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 6\";s:14:\"description_en\";s:46:\"Dolorum delectus quos dolores est dolor natus.\";s:14:\"description_ar\";s:47:\"Ea quis et magni molestiae quibusdam iure quam.\";s:9:\"file_path\";s:51:\"materials/d38ca057-3c89-317f-bf47-9d0df6f29355.docx\";s:9:\"file_type\";s:4:\"docx\";s:9:\"file_size\";i:31741731;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-02 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:14;s:18:\"course_offering_id\";i:3;s:8:\"title_en\";s:27:\"Reading Assignment - Week 6\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 6\";s:14:\"description_en\";s:46:\"Dolorum delectus quos dolores est dolor natus.\";s:14:\"description_ar\";s:47:\"Ea quis et magni molestiae quibusdam iure quam.\";s:9:\"file_path\";s:51:\"materials/d38ca057-3c89-317f-bf47-9d0df6f29355.docx\";s:9:\"file_type\";s:4:\"docx\";s:9:\"file_size\";i:31741731;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-02 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:67;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:4;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:67;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:4;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:4;s:9:\"course_id\";i:11;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:9;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:22;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS202-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS202-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS202-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:4;s:9:\"course_id\";i:11;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:9;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:22;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS202-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS202-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS202-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:11;s:4:\"code\";s:5:\"CS202\";s:7:\"name_en\";s:27:\"Object-Oriented Programming\";s:7:\"name_ar\";s:31:\"البرمجة الكائنية\";s:14:\"description_en\";s:32:\"OOP concepts and implementation.\";s:14:\"description_ar\";s:66:\"مفاهيم البرمجة الكائنية وتطبيقاتها.\";s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:11;s:4:\"code\";s:5:\"CS202\";s:7:\"name_en\";s:27:\"Object-Oriented Programming\";s:7:\"name_ar\";s:31:\"البرمجة الكائنية\";s:14:\"description_en\";s:32:\"OOP concepts and implementation.\";s:14:\"description_ar\";s:66:\"مفاهيم البرمجة الكائنية وتطبيقاتها.\";s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:4:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:15;s:18:\"course_offering_id\";i:4;s:8:\"title_en\";s:20:\"Study Guide - Week 1\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 1\";s:14:\"description_en\";s:56:\"Veniam amet dolores quibusdam voluptas ipsum doloremque.\";s:14:\"description_ar\";s:55:\"Quis tempore amet praesentium molestiae tempore nemo a.\";s:9:\"file_path\";s:50:\"materials/ee603d31-25fe-3b37-9332-96385e6ff5a3.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:16267433;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-09 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:15;s:18:\"course_offering_id\";i:4;s:8:\"title_en\";s:20:\"Study Guide - Week 1\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 1\";s:14:\"description_en\";s:56:\"Veniam amet dolores quibusdam voluptas ipsum doloremque.\";s:14:\"description_ar\";s:55:\"Quis tempore amet praesentium molestiae tempore nemo a.\";s:9:\"file_path\";s:50:\"materials/ee603d31-25fe-3b37-9332-96385e6ff5a3.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:16267433;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-09 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:16;s:18:\"course_offering_id\";i:4;s:8:\"title_en\";s:25:\"Practice Problem - Week 2\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 2\";s:14:\"description_en\";s:70:\"Praesentium quidem reprehenderit animi sed voluptates similique rerum.\";s:14:\"description_ar\";s:40:\"Debitis ut et nemo dolorum veniam nobis.\";s:9:\"file_path\";s:50:\"materials/8f512e5f-6e8d-39e4-a78c-e484e871b302.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:44812711;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:16;s:18:\"course_offering_id\";i:4;s:8:\"title_en\";s:25:\"Practice Problem - Week 2\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 2\";s:14:\"description_en\";s:70:\"Praesentium quidem reprehenderit animi sed voluptates similique rerum.\";s:14:\"description_ar\";s:40:\"Debitis ut et nemo dolorum veniam nobis.\";s:9:\"file_path\";s:50:\"materials/8f512e5f-6e8d-39e4-a78c-e484e871b302.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:44812711;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:17;s:18:\"course_offering_id\";i:4;s:8:\"title_en\";s:27:\"Reference Material - Week 3\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 3\";s:14:\"description_en\";s:52:\"Recusandae veritatis asperiores velit qui velit aut.\";s:14:\"description_ar\";s:63:\"Accusamus quod porro velit consequatur qui accusamus molestiae.\";s:9:\"file_path\";s:51:\"materials/b1454782-ebbc-371e-846e-620064dafed6.xlsx\";s:9:\"file_type\";s:4:\"xlsx\";s:9:\"file_size\";i:36945586;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-22 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:17;s:18:\"course_offering_id\";i:4;s:8:\"title_en\";s:27:\"Reference Material - Week 3\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 3\";s:14:\"description_en\";s:52:\"Recusandae veritatis asperiores velit qui velit aut.\";s:14:\"description_ar\";s:63:\"Accusamus quod porro velit consequatur qui accusamus molestiae.\";s:9:\"file_path\";s:51:\"materials/b1454782-ebbc-371e-846e-620064dafed6.xlsx\";s:9:\"file_type\";s:4:\"xlsx\";s:9:\"file_size\";i:36945586;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-22 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:18;s:18:\"course_offering_id\";i:4;s:8:\"title_en\";s:19:\" worksheet - Week 4\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 4\";s:14:\"description_en\";s:67:\"Assumenda autem cumque consequatur dolorem est distinctio velit et.\";s:14:\"description_ar\";s:37:\"Iste neque rerum aut quod eaque eius.\";s:9:\"file_path\";s:50:\"materials/7392f093-0743-3e73-9353-563b10864fc4.doc\";s:9:\"file_type\";s:3:\"doc\";s:9:\"file_size\";i:11493690;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:18;s:18:\"course_offering_id\";i:4;s:8:\"title_en\";s:19:\" worksheet - Week 4\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 4\";s:14:\"description_en\";s:67:\"Assumenda autem cumque consequatur dolorem est distinctio velit et.\";s:14:\"description_ar\";s:37:\"Iste neque rerum aut quod eaque eius.\";s:9:\"file_path\";s:50:\"materials/7392f093-0743-3e73-9353-563b10864fc4.doc\";s:9:\"file_type\";s:3:\"doc\";s:9:\"file_size\";i:11493690;s:11:\"uploaded_by\";i:9;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:89;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:89;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:5;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:23\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:5;s:9:\"course_id\";i:3;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:6;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:18;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS301-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:5;s:9:\"course_id\";i:3;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:6;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:18;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS301-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:3;s:4:\"code\";s:5:\"CS301\";s:7:\"name_en\";s:10:\"Algorithms\";s:7:\"name_ar\";s:22:\"الخوارزميات\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:3;s:4:\"code\";s:5:\"CS301\";s:7:\"name_en\";s:10:\"Algorithms\";s:7:\"name_ar\";s:22:\"الخوارزميات\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:7:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:19;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:25:\"Practice Problem - Week 1\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 1\";s:14:\"description_en\";s:31:\"Ut delectus deleniti quis sint.\";s:14:\"description_ar\";s:72:\"Quia asperiores saepe distinctio culpa quisquam nihil fugiat cupiditate.\";s:9:\"file_path\";s:51:\"materials/92fdf875-ab0e-37fe-975c-46aed4458971.docx\";s:9:\"file_type\";s:4:\"docx\";s:9:\"file_size\";i:11368915;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-08 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:19;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:25:\"Practice Problem - Week 1\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 1\";s:14:\"description_en\";s:31:\"Ut delectus deleniti quis sint.\";s:14:\"description_ar\";s:72:\"Quia asperiores saepe distinctio culpa quisquam nihil fugiat cupiditate.\";s:9:\"file_path\";s:51:\"materials/92fdf875-ab0e-37fe-975c-46aed4458971.docx\";s:9:\"file_type\";s:4:\"docx\";s:9:\"file_size\";i:11368915;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-08 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:20;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:27:\"Reference Material - Week 2\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 2\";s:14:\"description_en\";s:43:\"Pariatur explicabo dolore odit consequatur.\";s:14:\"description_ar\";s:49:\"Qui non qui et totam quia maiores et praesentium.\";s:9:\"file_path\";s:50:\"materials/c9f62047-3d47-3370-b4df-999d5e2d06ab.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:33988863;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-09 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:20;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:27:\"Reference Material - Week 2\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 2\";s:14:\"description_en\";s:43:\"Pariatur explicabo dolore odit consequatur.\";s:14:\"description_ar\";s:49:\"Qui non qui et totam quia maiores et praesentium.\";s:9:\"file_path\";s:50:\"materials/c9f62047-3d47-3370-b4df-999d5e2d06ab.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:33988863;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-09 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:21;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:27:\"Reference Material - Week 3\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 3\";s:14:\"description_en\";s:38:\"Vel ad tenetur perspiciatis doloribus.\";s:14:\"description_ar\";s:56:\"Id aut quia assumenda possimus vel atque numquam labore.\";s:9:\"file_path\";s:50:\"materials/f23a7ee7-ad34-3004-9626-30c067252bb1.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:5527440;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-31 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:21;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:27:\"Reference Material - Week 3\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 3\";s:14:\"description_en\";s:38:\"Vel ad tenetur perspiciatis doloribus.\";s:14:\"description_ar\";s:56:\"Id aut quia assumenda possimus vel atque numquam labore.\";s:9:\"file_path\";s:50:\"materials/f23a7ee7-ad34-3004-9626-30c067252bb1.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:5527440;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-31 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:22;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:19:\" worksheet - Week 4\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 4\";s:14:\"description_en\";s:31:\"In expedita quisquam qui atque.\";s:14:\"description_ar\";s:45:\"Corporis eius repudiandae quam in dolorem ut.\";s:9:\"file_path\";s:50:\"materials/1f885eb9-b454-34cb-969e-0dc2c87be9bd.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:45730342;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-16 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:22;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:19:\" worksheet - Week 4\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 4\";s:14:\"description_en\";s:31:\"In expedita quisquam qui atque.\";s:14:\"description_ar\";s:45:\"Corporis eius repudiandae quam in dolorem ut.\";s:9:\"file_path\";s:50:\"materials/1f885eb9-b454-34cb-969e-0dc2c87be9bd.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:45730342;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-16 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:23;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:25:\"Practice Problem - Week 5\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 5\";s:14:\"description_en\";s:57:\"Voluptas qui accusantium molestiae enim consequuntur rem.\";s:14:\"description_ar\";s:56:\"Commodi quia eum neque sint cumque sint qui accusantium.\";s:9:\"file_path\";s:50:\"materials/782f95da-2a48-366f-9efa-c07fbbafe68b.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:34233905;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-26 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:23;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:25:\"Practice Problem - Week 5\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 5\";s:14:\"description_en\";s:57:\"Voluptas qui accusantium molestiae enim consequuntur rem.\";s:14:\"description_ar\";s:56:\"Commodi quia eum neque sint cumque sint qui accusantium.\";s:9:\"file_path\";s:50:\"materials/782f95da-2a48-366f-9efa-c07fbbafe68b.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:34233905;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-26 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:5;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:24;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:27:\"Reading Assignment - Week 6\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 6\";s:14:\"description_en\";s:43:\"Quo sunt adipisci officiis vero distinctio.\";s:14:\"description_ar\";s:56:\"Temporibus consectetur error quam et eos aliquid maxime.\";s:9:\"file_path\";s:51:\"materials/a541dd37-fd86-3cc0-b41e-442443fb044f.docx\";s:9:\"file_type\";s:4:\"docx\";s:9:\"file_size\";i:14365552;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-13 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:24;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:27:\"Reading Assignment - Week 6\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 6\";s:14:\"description_en\";s:43:\"Quo sunt adipisci officiis vero distinctio.\";s:14:\"description_ar\";s:56:\"Temporibus consectetur error quam et eos aliquid maxime.\";s:9:\"file_path\";s:51:\"materials/a541dd37-fd86-3cc0-b41e-442443fb044f.docx\";s:9:\"file_type\";s:4:\"docx\";s:9:\"file_size\";i:14365552;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-13 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:6;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:25;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:25:\"Practice Problem - Week 7\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 7\";s:14:\"description_en\";s:30:\"Quas voluptate alias culpa ut.\";s:14:\"description_ar\";s:23:\"Et amet qui voluptatem.\";s:9:\"file_path\";s:51:\"materials/0390c0b9-7834-3764-96fd-0f7008ebdf93.pptx\";s:9:\"file_type\";s:4:\"pptx\";s:9:\"file_size\";i:45880987;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-27 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:25;s:18:\"course_offering_id\";i:5;s:8:\"title_en\";s:25:\"Practice Problem - Week 7\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 7\";s:14:\"description_en\";s:30:\"Quas voluptate alias culpa ut.\";s:14:\"description_ar\";s:23:\"Et amet qui voluptatem.\";s:9:\"file_path\";s:51:\"materials/0390c0b9-7834-3764-96fd-0f7008ebdf93.pptx\";s:9:\"file_type\";s:4:\"pptx\";s:9:\"file_size\";i:45880987;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-27 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:5;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:107;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:107;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:6;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:6;s:9:\"course_id\";i:12;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:5;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:17;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS302-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:6;s:9:\"course_id\";i:12;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:5;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:17;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS302-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:12;s:4:\"code\";s:5:\"CS302\";s:7:\"name_en\";s:15:\"Web Development\";s:7:\"name_ar\";s:21:\"تطوير الويب\";s:14:\"description_en\";s:37:\"Frontend and backend web development.\";s:14:\"description_ar\";s:57:\"تطوير الويب من الواجهة والخادم.\";s:7:\"credits\";i:4;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:12;s:4:\"code\";s:5:\"CS302\";s:7:\"name_en\";s:15:\"Web Development\";s:7:\"name_ar\";s:21:\"تطوير الويب\";s:14:\"description_en\";s:37:\"Frontend and backend web development.\";s:14:\"description_ar\";s:57:\"تطوير الويب من الواجهة والخادم.\";s:7:\"credits\";i:4;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:4:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:26;s:18:\"course_offering_id\";i:6;s:8:\"title_en\";s:25:\"Practice Problem - Week 1\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 1\";s:14:\"description_en\";s:38:\"Non nulla repellat eligendi aut nihil.\";s:14:\"description_ar\";s:34:\"Excepturi dolor est eveniet iusto.\";s:9:\"file_path\";s:50:\"materials/4584f9c9-7076-3db3-a93b-b0363aa0bd1a.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:43827751;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-14 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:26;s:18:\"course_offering_id\";i:6;s:8:\"title_en\";s:25:\"Practice Problem - Week 1\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 1\";s:14:\"description_en\";s:38:\"Non nulla repellat eligendi aut nihil.\";s:14:\"description_ar\";s:34:\"Excepturi dolor est eveniet iusto.\";s:9:\"file_path\";s:50:\"materials/4584f9c9-7076-3db3-a93b-b0363aa0bd1a.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:43827751;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-14 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:27;s:18:\"course_offering_id\";i:6;s:8:\"title_en\";s:27:\"Reference Material - Week 2\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 2\";s:14:\"description_en\";s:34:\"Quia et minima vel vero molestiae.\";s:14:\"description_ar\";s:65:\"Dolorem et repudiandae nostrum consequatur rerum qui consequatur.\";s:9:\"file_path\";s:50:\"materials/5f634fd1-5941-39ca-a6bf-b7f1f7c39ca6.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:26463035;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-27 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:27;s:18:\"course_offering_id\";i:6;s:8:\"title_en\";s:27:\"Reference Material - Week 2\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 2\";s:14:\"description_en\";s:34:\"Quia et minima vel vero molestiae.\";s:14:\"description_ar\";s:65:\"Dolorem et repudiandae nostrum consequatur rerum qui consequatur.\";s:9:\"file_path\";s:50:\"materials/5f634fd1-5941-39ca-a6bf-b7f1f7c39ca6.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:26463035;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-27 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:28;s:18:\"course_offering_id\";i:6;s:8:\"title_en\";s:22:\"Lecture Notes - Week 3\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 3\";s:14:\"description_en\";s:38:\"Illum labore et nam et dignissimos in.\";s:14:\"description_ar\";s:50:\"Dolores repudiandae quis exercitationem quo alias.\";s:9:\"file_path\";s:51:\"materials/e6566007-8b05-39d8-b8dd-6f04c2502dca.xlsx\";s:9:\"file_type\";s:4:\"xlsx\";s:9:\"file_size\";i:25336741;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-12 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:28;s:18:\"course_offering_id\";i:6;s:8:\"title_en\";s:22:\"Lecture Notes - Week 3\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 3\";s:14:\"description_en\";s:38:\"Illum labore et nam et dignissimos in.\";s:14:\"description_ar\";s:50:\"Dolores repudiandae quis exercitationem quo alias.\";s:9:\"file_path\";s:51:\"materials/e6566007-8b05-39d8-b8dd-6f04c2502dca.xlsx\";s:9:\"file_type\";s:4:\"xlsx\";s:9:\"file_size\";i:25336741;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-12 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:29;s:18:\"course_offering_id\";i:6;s:8:\"title_en\";s:27:\"Reading Assignment - Week 4\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 4\";s:14:\"description_en\";s:48:\"Quaerat eveniet beatae molestiae iure voluptate.\";s:14:\"description_ar\";s:56:\"Eum error officia laboriosam iusto est quasi sint harum.\";s:9:\"file_path\";s:50:\"materials/e07d97f5-ce94-31d8-b4da-abf036e78154.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:45316349;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-13 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:29;s:18:\"course_offering_id\";i:6;s:8:\"title_en\";s:27:\"Reading Assignment - Week 4\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 4\";s:14:\"description_en\";s:48:\"Quaerat eveniet beatae molestiae iure voluptate.\";s:14:\"description_ar\";s:56:\"Eum error officia laboriosam iusto est quasi sint harum.\";s:9:\"file_path\";s:50:\"materials/e07d97f5-ce94-31d8-b4da-abf036e78154.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:45316349;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-13 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:6;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:124;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:7;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:124;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:7;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:7;s:9:\"course_id\";i:4;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:5;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:21;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS350-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS350-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS350-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:7;s:9:\"course_id\";i:4;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:5;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:21;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS350-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS350-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS350-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:4;s:4:\"code\";s:5:\"CS350\";s:7:\"name_en\";s:15:\"Web Development\";s:7:\"name_ar\";s:21:\"تطوير الويب\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:4;s:4:\"code\";s:5:\"CS350\";s:7:\"name_en\";s:15:\"Web Development\";s:7:\"name_ar\";s:21:\"تطوير الويب\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:7:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:30;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:22:\"Lecture Notes - Week 1\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 1\";s:14:\"description_en\";s:61:\"Non voluptatem ad molestiae consectetur reiciendis eius quod.\";s:14:\"description_ar\";s:44:\"Asperiores quae et quia amet exercitationem.\";s:9:\"file_path\";s:50:\"materials/c6ca3b3d-8cc9-3285-bb15-de063cc1947f.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:20800646;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-28 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:30;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:22:\"Lecture Notes - Week 1\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 1\";s:14:\"description_en\";s:61:\"Non voluptatem ad molestiae consectetur reiciendis eius quod.\";s:14:\"description_ar\";s:44:\"Asperiores quae et quia amet exercitationem.\";s:9:\"file_path\";s:50:\"materials/c6ca3b3d-8cc9-3285-bb15-de063cc1947f.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:20800646;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-28 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:31;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:19:\" worksheet - Week 2\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 2\";s:14:\"description_en\";s:56:\"Suscipit veniam pariatur eum minima blanditiis suscipit.\";s:14:\"description_ar\";s:56:\"Unde praesentium voluptatum odio et temporibus delectus.\";s:9:\"file_path\";s:50:\"materials/b734b66f-f8ef-3965-b89e-f45169904918.png\";s:9:\"file_type\";s:3:\"png\";s:9:\"file_size\";i:20497004;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-04 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:31;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:19:\" worksheet - Week 2\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 2\";s:14:\"description_en\";s:56:\"Suscipit veniam pariatur eum minima blanditiis suscipit.\";s:14:\"description_ar\";s:56:\"Unde praesentium voluptatum odio et temporibus delectus.\";s:9:\"file_path\";s:50:\"materials/b734b66f-f8ef-3965-b89e-f45169904918.png\";s:9:\"file_type\";s:3:\"png\";s:9:\"file_size\";i:20497004;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-04 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:32;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:22:\"Lecture Notes - Week 3\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 3\";s:14:\"description_en\";s:41:\"Sunt corporis itaque accusamus eius quia.\";s:14:\"description_ar\";s:39:\"Aut hic quibusdam sit dolore molestiae.\";s:9:\"file_path\";s:50:\"materials/ef9c818f-5c12-3e0d-a574-4e576fa62f92.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:22135491;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-13 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:32;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:22:\"Lecture Notes - Week 3\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 3\";s:14:\"description_en\";s:41:\"Sunt corporis itaque accusamus eius quia.\";s:14:\"description_ar\";s:39:\"Aut hic quibusdam sit dolore molestiae.\";s:9:\"file_path\";s:50:\"materials/ef9c818f-5c12-3e0d-a574-4e576fa62f92.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:22135491;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-13 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:33;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:27:\"Reference Material - Week 4\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 4\";s:14:\"description_en\";s:69:\"Est deleniti tenetur odio aspernatur eos repellendus nisi voluptates.\";s:14:\"description_ar\";s:29:\"Maxime qui quis placeat quae.\";s:9:\"file_path\";s:50:\"materials/38b81603-7b5e-39ee-bb45-8202a7afbe3e.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:47447859;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-06 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:33;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:27:\"Reference Material - Week 4\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 4\";s:14:\"description_en\";s:69:\"Est deleniti tenetur odio aspernatur eos repellendus nisi voluptates.\";s:14:\"description_ar\";s:29:\"Maxime qui quis placeat quae.\";s:9:\"file_path\";s:50:\"materials/38b81603-7b5e-39ee-bb45-8202a7afbe3e.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:47447859;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-06 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:34;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:20:\"Study Guide - Week 5\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 5\";s:14:\"description_en\";s:48:\"Distinctio amet necessitatibus voluptate minima.\";s:14:\"description_ar\";s:27:\"Ullam quaerat cumque ut ut.\";s:9:\"file_path\";s:50:\"materials/e469e6a1-f1d8-300d-86d9-2f86d39e645b.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:26964528;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:34;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:20:\"Study Guide - Week 5\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 5\";s:14:\"description_en\";s:48:\"Distinctio amet necessitatibus voluptate minima.\";s:14:\"description_ar\";s:27:\"Ullam quaerat cumque ut ut.\";s:9:\"file_path\";s:50:\"materials/e469e6a1-f1d8-300d-86d9-2f86d39e645b.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:26964528;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:5;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:35;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:27:\"Reference Material - Week 6\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 6\";s:14:\"description_en\";s:45:\"Id rerum iusto voluptatum sapiente ut id quo.\";s:14:\"description_ar\";s:35:\"Voluptas provident sunt ea dolorem.\";s:9:\"file_path\";s:51:\"materials/4efe0c65-5ea0-3fe4-874f-7b7018655559.docx\";s:9:\"file_type\";s:4:\"docx\";s:9:\"file_size\";i:8013845;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-23 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:35;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:27:\"Reference Material - Week 6\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 6\";s:14:\"description_en\";s:45:\"Id rerum iusto voluptatum sapiente ut id quo.\";s:14:\"description_ar\";s:35:\"Voluptas provident sunt ea dolorem.\";s:9:\"file_path\";s:51:\"materials/4efe0c65-5ea0-3fe4-874f-7b7018655559.docx\";s:9:\"file_type\";s:4:\"docx\";s:9:\"file_size\";i:8013845;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-23 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:6;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:36;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:27:\"Reading Assignment - Week 7\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 7\";s:14:\"description_en\";s:24:\"Hic aliquid animi ea et.\";s:14:\"description_ar\";s:39:\"Voluptatum culpa molestiae consectetur.\";s:9:\"file_path\";s:50:\"materials/a6cea497-ddae-3094-b047-ec24d815cb40.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:3991875;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:36;s:18:\"course_offering_id\";i:7;s:8:\"title_en\";s:27:\"Reading Assignment - Week 7\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 7\";s:14:\"description_en\";s:24:\"Hic aliquid animi ea et.\";s:14:\"description_ar\";s:39:\"Voluptatum culpa molestiae consectetur.\";s:9:\"file_path\";s:50:\"materials/a6cea497-ddae-3094-b047-ec24d815cb40.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:3991875;s:11:\"uploaded_by\";i:5;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-25 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:7;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:145;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:8;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:145;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:8;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:8;s:9:\"course_id\";i:5;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:6;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:20;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS420-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS420-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS420-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:8;s:9:\"course_id\";i:5;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:6;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:20;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS420-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS420-1\\\"}]\"\";s:4:\"room\";s:12:\"Room CS420-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:5;s:4:\"code\";s:5:\"CS420\";s:7:\"name_en\";s:16:\"Database Systems\";s:7:\"name_ar\";s:34:\"نظم قواعد البيانات\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:5;s:4:\"code\";s:5:\"CS420\";s:7:\"name_en\";s:16:\"Database Systems\";s:7:\"name_ar\";s:34:\"نظم قواعد البيانات\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:1;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:4:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:37;s:18:\"course_offering_id\";i:8;s:8:\"title_en\";s:19:\" worksheet - Week 1\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 1\";s:14:\"description_en\";s:15:\"Ut quod non at.\";s:14:\"description_ar\";s:50:\"Et sunt quos enim quaerat et reprehenderit quo et.\";s:9:\"file_path\";s:50:\"materials/799a6a58-af7c-3a36-85c2-5de370a18462.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:3837519;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-20 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:37;s:18:\"course_offering_id\";i:8;s:8:\"title_en\";s:19:\" worksheet - Week 1\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 1\";s:14:\"description_en\";s:15:\"Ut quod non at.\";s:14:\"description_ar\";s:50:\"Et sunt quos enim quaerat et reprehenderit quo et.\";s:9:\"file_path\";s:50:\"materials/799a6a58-af7c-3a36-85c2-5de370a18462.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:3837519;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-20 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:38;s:18:\"course_offering_id\";i:8;s:8:\"title_en\";s:22:\"Lecture Notes - Week 2\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 2\";s:14:\"description_en\";s:58:\"Ea et qui quibusdam corrupti temporibus ipsum accusantium.\";s:14:\"description_ar\";s:48:\"Non numquam deleniti debitis nemo modi mollitia.\";s:9:\"file_path\";s:50:\"materials/b7042f99-f39b-36b2-a18a-98e2a6cc05d2.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:42778419;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-02 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:38;s:18:\"course_offering_id\";i:8;s:8:\"title_en\";s:22:\"Lecture Notes - Week 2\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 2\";s:14:\"description_en\";s:58:\"Ea et qui quibusdam corrupti temporibus ipsum accusantium.\";s:14:\"description_ar\";s:48:\"Non numquam deleniti debitis nemo modi mollitia.\";s:9:\"file_path\";s:50:\"materials/b7042f99-f39b-36b2-a18a-98e2a6cc05d2.xls\";s:9:\"file_type\";s:3:\"xls\";s:9:\"file_size\";i:42778419;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-02 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:39;s:18:\"course_offering_id\";i:8;s:8:\"title_en\";s:27:\"Reading Assignment - Week 3\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 3\";s:14:\"description_en\";s:38:\"Perspiciatis quaerat quaerat adipisci.\";s:14:\"description_ar\";s:37:\"Aspernatur perspiciatis dolorum quia.\";s:9:\"file_path\";s:50:\"materials/2efd3a70-0755-3f5a-b01d-e77fb71e8c0e.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:45688207;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-09 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:39;s:18:\"course_offering_id\";i:8;s:8:\"title_en\";s:27:\"Reading Assignment - Week 3\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 3\";s:14:\"description_en\";s:38:\"Perspiciatis quaerat quaerat adipisci.\";s:14:\"description_ar\";s:37:\"Aspernatur perspiciatis dolorum quia.\";s:9:\"file_path\";s:50:\"materials/2efd3a70-0755-3f5a-b01d-e77fb71e8c0e.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:45688207;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-09 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:40;s:18:\"course_offering_id\";i:8;s:8:\"title_en\";s:19:\" worksheet - Week 4\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 4\";s:14:\"description_en\";s:54:\"Voluptatem non mollitia consequatur rerum veniam sint.\";s:14:\"description_ar\";s:62:\"Fugiat necessitatibus vero tenetur esse dolore unde occaecati.\";s:9:\"file_path\";s:50:\"materials/74408038-e499-398d-afac-b39bb18a600b.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:97210;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-10 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:40;s:18:\"course_offering_id\";i:8;s:8:\"title_en\";s:19:\" worksheet - Week 4\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 4\";s:14:\"description_en\";s:54:\"Voluptatem non mollitia consequatur rerum veniam sint.\";s:14:\"description_ar\";s:62:\"Fugiat necessitatibus vero tenetur esse dolore unde occaecati.\";s:9:\"file_path\";s:50:\"materials/74408038-e499-398d-afac-b39bb18a600b.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:97210;s:11:\"uploaded_by\";i:6;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-10 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:8;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:165;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:9;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:165;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:9;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:9;s:9:\"course_id\";i:6;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:7;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:16;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE101-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE101-1\\\"}]\"\";s:4:\"room\";s:12:\"Room EE101-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:9;s:9:\"course_id\";i:6;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:7;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:16;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE101-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE101-1\\\"}]\"\";s:4:\"room\";s:12:\"Room EE101-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:6;s:4:\"code\";s:5:\"EE101\";s:7:\"name_en\";s:16:\"Circuit Analysis\";s:7:\"name_ar\";s:25:\"تحليل الدوائر\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:4;s:13:\"department_id\";i:2;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:6;s:4:\"code\";s:5:\"EE101\";s:7:\"name_en\";s:16:\"Circuit Analysis\";s:7:\"name_ar\";s:25:\"تحليل الدوائر\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:4;s:13:\"department_id\";i:2;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:4:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:41;s:18:\"course_offering_id\";i:9;s:8:\"title_en\";s:27:\"Reading Assignment - Week 1\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 1\";s:14:\"description_en\";s:49:\"Dolor quis soluta quod dolor aut dignissimos est.\";s:14:\"description_ar\";s:54:\"Sed quam alias provident delectus repudiandae aut est.\";s:9:\"file_path\";s:50:\"materials/0690d7c9-521a-37a0-ba3d-1a71351e038b.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:9519939;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-07 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:41;s:18:\"course_offering_id\";i:9;s:8:\"title_en\";s:27:\"Reading Assignment - Week 1\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 1\";s:14:\"description_en\";s:49:\"Dolor quis soluta quod dolor aut dignissimos est.\";s:14:\"description_ar\";s:54:\"Sed quam alias provident delectus repudiandae aut est.\";s:9:\"file_path\";s:50:\"materials/0690d7c9-521a-37a0-ba3d-1a71351e038b.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:9519939;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-07 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:42;s:18:\"course_offering_id\";i:9;s:8:\"title_en\";s:20:\"Study Guide - Week 2\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 2\";s:14:\"description_en\";s:64:\"Sint consectetur placeat soluta tenetur facere recusandae eaque.\";s:14:\"description_ar\";s:36:\"Ut eligendi provident et id et quod.\";s:9:\"file_path\";s:51:\"materials/f3ea727b-7ee0-3d2c-8849-c121ab85c249.xlsx\";s:9:\"file_type\";s:4:\"xlsx\";s:9:\"file_size\";i:49313540;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-27 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:42;s:18:\"course_offering_id\";i:9;s:8:\"title_en\";s:20:\"Study Guide - Week 2\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 2\";s:14:\"description_en\";s:64:\"Sint consectetur placeat soluta tenetur facere recusandae eaque.\";s:14:\"description_ar\";s:36:\"Ut eligendi provident et id et quod.\";s:9:\"file_path\";s:51:\"materials/f3ea727b-7ee0-3d2c-8849-c121ab85c249.xlsx\";s:9:\"file_type\";s:4:\"xlsx\";s:9:\"file_size\";i:49313540;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-27 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:43;s:18:\"course_offering_id\";i:9;s:8:\"title_en\";s:27:\"Reading Assignment - Week 3\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 3\";s:14:\"description_en\";s:39:\"Nobis ipsam perferendis voluptatum qui.\";s:14:\"description_ar\";s:64:\"Voluptatum quaerat sed perferendis sed doloremque aliquam quasi.\";s:9:\"file_path\";s:50:\"materials/6f3f1d45-5ac1-3e56-86b1-e1149f66ec98.jpg\";s:9:\"file_type\";s:3:\"jpg\";s:9:\"file_size\";i:49001853;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-31 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:43;s:18:\"course_offering_id\";i:9;s:8:\"title_en\";s:27:\"Reading Assignment - Week 3\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 3\";s:14:\"description_en\";s:39:\"Nobis ipsam perferendis voluptatum qui.\";s:14:\"description_ar\";s:64:\"Voluptatum quaerat sed perferendis sed doloremque aliquam quasi.\";s:9:\"file_path\";s:50:\"materials/6f3f1d45-5ac1-3e56-86b1-e1149f66ec98.jpg\";s:9:\"file_type\";s:3:\"jpg\";s:9:\"file_size\";i:49001853;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-31 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:44;s:18:\"course_offering_id\";i:9;s:8:\"title_en\";s:27:\"Reference Material - Week 4\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 4\";s:14:\"description_en\";s:60:\"Natus eum repellendus assumenda qui possimus magni corrupti.\";s:14:\"description_ar\";s:36:\"Id sapiente quia ut modi id placeat.\";s:9:\"file_path\";s:50:\"materials/9d4818db-9822-307d-8791-3df92641bc6a.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:1293030;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-18 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:44;s:18:\"course_offering_id\";i:9;s:8:\"title_en\";s:27:\"Reference Material - Week 4\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 4\";s:14:\"description_en\";s:60:\"Natus eum repellendus assumenda qui possimus magni corrupti.\";s:14:\"description_ar\";s:36:\"Id sapiente quia ut modi id placeat.\";s:9:\"file_path\";s:50:\"materials/9d4818db-9822-307d-8791-3df92641bc6a.zip\";s:9:\"file_type\";s:3:\"zip\";s:9:\"file_size\";i:1293030;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-18 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:9;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:181;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:10;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:181;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:10;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:10;s:9:\"course_id\";i:7;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:7;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:17;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE202-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE202-1\\\"}]\"\";s:4:\"room\";s:12:\"Room EE202-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:10;s:9:\"course_id\";i:7;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:7;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:17;s:13:\"schedule_json\";s:148:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE202-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE202-1\\\"}]\"\";s:4:\"room\";s:12:\"Room EE202-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:7;s:4:\"code\";s:5:\"EE202\";s:7:\"name_en\";s:20:\"Digital Logic Design\";s:7:\"name_ar\";s:36:\"تصميم المنطق الرقمي\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:2;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:7;s:4:\"code\";s:5:\"EE202\";s:7:\"name_en\";s:20:\"Digital Logic Design\";s:7:\"name_ar\";s:36:\"تصميم المنطق الرقمي\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:2;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:3:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:45;s:18:\"course_offering_id\";i:10;s:8:\"title_en\";s:19:\" worksheet - Week 1\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 1\";s:14:\"description_en\";s:51:\"Atque harum iure sed expedita nihil non laudantium.\";s:14:\"description_ar\";s:43:\"Beatae qui sequi ipsum expedita asperiores.\";s:9:\"file_path\";s:51:\"materials/11b726c2-1c3b-34f9-b588-27a366440ce9.pptx\";s:9:\"file_type\";s:4:\"pptx\";s:9:\"file_size\";i:22628225;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-05 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:45;s:18:\"course_offering_id\";i:10;s:8:\"title_en\";s:19:\" worksheet - Week 1\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 1\";s:14:\"description_en\";s:51:\"Atque harum iure sed expedita nihil non laudantium.\";s:14:\"description_ar\";s:43:\"Beatae qui sequi ipsum expedita asperiores.\";s:9:\"file_path\";s:51:\"materials/11b726c2-1c3b-34f9-b588-27a366440ce9.pptx\";s:9:\"file_type\";s:4:\"pptx\";s:9:\"file_size\";i:22628225;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-05 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:46;s:18:\"course_offering_id\";i:10;s:8:\"title_en\";s:25:\"Practice Problem - Week 2\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 2\";s:14:\"description_en\";s:28:\"Et voluptates quas officiis.\";s:14:\"description_ar\";s:38:\"Consequatur nobis voluptatem ex rerum.\";s:9:\"file_path\";s:50:\"materials/c2b47cfd-91a2-3804-9b63-c839839d225d.png\";s:9:\"file_type\";s:3:\"png\";s:9:\"file_size\";i:13418999;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-23 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:46;s:18:\"course_offering_id\";i:10;s:8:\"title_en\";s:25:\"Practice Problem - Week 2\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 2\";s:14:\"description_en\";s:28:\"Et voluptates quas officiis.\";s:14:\"description_ar\";s:38:\"Consequatur nobis voluptatem ex rerum.\";s:9:\"file_path\";s:50:\"materials/c2b47cfd-91a2-3804-9b63-c839839d225d.png\";s:9:\"file_type\";s:3:\"png\";s:9:\"file_size\";i:13418999;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-23 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:47;s:18:\"course_offering_id\";i:10;s:8:\"title_en\";s:27:\"Reading Assignment - Week 3\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 3\";s:14:\"description_en\";s:49:\"Quo molestiae optio omnis voluptas quod corporis.\";s:14:\"description_ar\";s:53:\"Consequatur quia sed ullam impedit iure qui deleniti.\";s:9:\"file_path\";s:50:\"materials/3d1d5442-ebd8-3a5b-a9f4-2961e3191a47.png\";s:9:\"file_type\";s:3:\"png\";s:9:\"file_size\";i:40146459;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-12 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:47;s:18:\"course_offering_id\";i:10;s:8:\"title_en\";s:27:\"Reading Assignment - Week 3\";s:8:\"title_ar\";s:37:\"Reading Assignment - الأسبوع 3\";s:14:\"description_en\";s:49:\"Quo molestiae optio omnis voluptas quod corporis.\";s:14:\"description_ar\";s:53:\"Consequatur quia sed ullam impedit iure qui deleniti.\";s:9:\"file_path\";s:50:\"materials/3d1d5442-ebd8-3a5b-a9f4-2961e3191a47.png\";s:9:\"file_type\";s:3:\"png\";s:9:\"file_size\";i:40146459;s:11:\"uploaded_by\";i:7;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-12 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:10;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:198;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:11;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:198;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:11;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:11;s:9:\"course_id\";i:8;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:8;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:25;s:13:\"schedule_json\";s:150:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC101-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC101-1\\\"}]\"\";s:4:\"room\";s:13:\"Room ACC101-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:11;s:9:\"course_id\";i:8;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:8;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:25;s:13:\"schedule_json\";s:150:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC101-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC101-1\\\"}]\"\";s:4:\"room\";s:13:\"Room ACC101-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:8;s:4:\"code\";s:6:\"ACC101\";s:7:\"name_en\";s:20:\"Financial Accounting\";s:7:\"name_ar\";s:23:\"محاسبة مالية\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:4;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:8;s:4:\"code\";s:6:\"ACC101\";s:7:\"name_en\";s:20:\"Financial Accounting\";s:7:\"name_ar\";s:23:\"محاسبة مالية\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:4;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:4:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:48;s:18:\"course_offering_id\";i:11;s:8:\"title_en\";s:22:\"Lecture Notes - Week 1\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 1\";s:14:\"description_en\";s:48:\"Quisquam explicabo ullam voluptatem ut id alias.\";s:14:\"description_ar\";s:42:\"Quidem tempore repellendus ipsa ut minima.\";s:9:\"file_path\";s:50:\"materials/1cfc45c8-e762-327b-ac9a-0d086d39c60c.jpg\";s:9:\"file_type\";s:3:\"jpg\";s:9:\"file_size\";i:34442962;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-08 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:48;s:18:\"course_offering_id\";i:11;s:8:\"title_en\";s:22:\"Lecture Notes - Week 1\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 1\";s:14:\"description_en\";s:48:\"Quisquam explicabo ullam voluptatem ut id alias.\";s:14:\"description_ar\";s:42:\"Quidem tempore repellendus ipsa ut minima.\";s:9:\"file_path\";s:50:\"materials/1cfc45c8-e762-327b-ac9a-0d086d39c60c.jpg\";s:9:\"file_type\";s:3:\"jpg\";s:9:\"file_size\";i:34442962;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-08 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:49;s:18:\"course_offering_id\";i:11;s:8:\"title_en\";s:20:\"Study Guide - Week 2\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 2\";s:14:\"description_en\";s:57:\"Sed est fuga dolores autem dolorem nihil pariatur beatae.\";s:14:\"description_ar\";s:39:\"Possimus repudiandae et fugiat maiores.\";s:9:\"file_path\";s:50:\"materials/d8db791e-a00d-32a6-8a43-e17f0bcc1df5.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:44055773;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-15 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:49;s:18:\"course_offering_id\";i:11;s:8:\"title_en\";s:20:\"Study Guide - Week 2\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 2\";s:14:\"description_en\";s:57:\"Sed est fuga dolores autem dolorem nihil pariatur beatae.\";s:14:\"description_ar\";s:39:\"Possimus repudiandae et fugiat maiores.\";s:9:\"file_path\";s:50:\"materials/d8db791e-a00d-32a6-8a43-e17f0bcc1df5.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:44055773;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-15 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:50;s:18:\"course_offering_id\";i:11;s:8:\"title_en\";s:19:\" worksheet - Week 3\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 3\";s:14:\"description_en\";s:56:\"Dolores molestiae totam quos dolores a magnam molestiae.\";s:14:\"description_ar\";s:42:\"Quis ratione distinctio culpa possimus at.\";s:9:\"file_path\";s:50:\"materials/e578bf37-f04f-32fd-a3e2-b79e950a594a.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:26749366;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-04 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:50;s:18:\"course_offering_id\";i:11;s:8:\"title_en\";s:19:\" worksheet - Week 3\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 3\";s:14:\"description_en\";s:56:\"Dolores molestiae totam quos dolores a magnam molestiae.\";s:14:\"description_ar\";s:42:\"Quis ratione distinctio culpa possimus at.\";s:9:\"file_path\";s:50:\"materials/e578bf37-f04f-32fd-a3e2-b79e950a594a.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:26749366;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-02-04 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:51;s:18:\"course_offering_id\";i:11;s:8:\"title_en\";s:25:\"Practice Problem - Week 4\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 4\";s:14:\"description_en\";s:45:\"Rem molestias voluptatem quo voluptas labore.\";s:14:\"description_ar\";s:56:\"Est aut sed consequatur ad consequuntur harum modi quod.\";s:9:\"file_path\";s:50:\"materials/4fd5dd5f-952d-342c-9591-214869cb54bd.doc\";s:9:\"file_type\";s:3:\"doc\";s:9:\"file_size\";i:26934620;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-13 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:51;s:18:\"course_offering_id\";i:11;s:8:\"title_en\";s:25:\"Practice Problem - Week 4\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 4\";s:14:\"description_en\";s:45:\"Rem molestias voluptatem quo voluptas labore.\";s:14:\"description_ar\";s:56:\"Est aut sed consequatur ad consequuntur harum modi quod.\";s:9:\"file_path\";s:50:\"materials/4fd5dd5f-952d-342c-9591-214869cb54bd.doc\";s:9:\"file_type\";s:3:\"doc\";s:9:\"file_size\";i:26934620;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-13 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:11;O:21:\"App\\Models\\Enrollment\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:11:\"enrollments\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:223;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:12;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:223;s:10:\"student_id\";i:10;s:18:\"course_offering_id\";i:12;s:6:\"status\";s:8:\"approved\";s:20:\"completed_activities\";i:0;s:16:\"total_activities\";i:0;s:11:\"enrolled_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"dropped_at\";N;s:11:\"admin_notes\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;s:26:\"completed_activities_count\";i:0;s:22:\"total_activities_count\";i:0;s:19:\"progress_percentage\";s:4:\"0.00\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:8:{s:11:\"enrolled_at\";s:8:\"datetime\";s:10:\"dropped_at\";s:8:\"datetime\";s:20:\"completed_activities\";s:7:\"integer\";s:16:\"total_activities\";s:7:\"integer\";s:19:\"progress_percentage\";s:9:\"decimal:2\";s:11:\"final_grade\";s:9:\"decimal:2\";s:6:\"status\";s:6:\"string\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:14:\"courseOffering\";O:25:\"App\\Models\\CourseOffering\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_offerings\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:14:{s:2:\"id\";i:12;s:9:\"course_id\";i:9;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:8;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:15;s:13:\"schedule_json\";s:150:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC201-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC201-1\\\"}]\"\";s:4:\"room\";s:13:\"Room ACC201-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:14:{s:2:\"id\";i:12;s:9:\"course_id\";i:9;s:11:\"semester_id\";i:1;s:10:\"teacher_id\";i:8;s:12:\"section_name\";s:1:\"A\";s:8:\"capacity\";i:50;s:14:\"enrolled_count\";i:15;s:13:\"schedule_json\";s:150:\"\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC201-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC201-1\\\"}]\"\";s:4:\"room\";s:13:\"Room ACC201-1\";s:9:\"is_active\";i:1;s:22:\"is_visible_to_students\";i:1;s:10:\"created_at\";s:19:\"2026-02-11 23:38:21\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:13:\"schedule_json\";s:5:\"array\";s:9:\"is_active\";s:7:\"boolean\";s:22:\"is_visible_to_students\";s:7:\"boolean\";s:8:\"capacity\";s:7:\"integer\";s:14:\"enrolled_count\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:6:{i:0;s:9:\"full_name\";i:1;s:16:\"schedule_display\";i:2;s:7:\"is_full\";i:3;s:15:\"remaining_seats\";i:4;s:15:\"fill_percentage\";i:5;s:15:\"attendance_rate\";}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:4:{s:6:\"course\";O:17:\"App\\Models\\Course\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:7:\"courses\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:13:{s:2:\"id\";i:9;s:4:\"code\";s:6:\"ACC201\";s:7:\"name_en\";s:21:\"Managerial Accounting\";s:7:\"name_ar\";s:25:\"محاسبة إدارية\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:4;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:11:\"\0*\0original\";a:13:{s:2:\"id\";i:9;s:4:\"code\";s:6:\"ACC201\";s:7:\"name_en\";s:21:\"Managerial Accounting\";s:7:\"name_ar\";s:25:\"محاسبة إدارية\";s:14:\"description_en\";N;s:14:\"description_ar\";N;s:7:\"credits\";i:3;s:13:\"department_id\";i:4;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:20\";s:10:\"deleted_at\";N;}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:7:\"credits\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:9:{i:0;s:4:\"code\";i:1;s:7:\"name_en\";i:2;s:7:\"name_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:7:\"credits\";i:6;s:13:\"department_id\";i:7;s:9:\"is_active\";i:8;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}s:8:\"semester\";r:498;s:11:\"assessments\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:9:\"materials\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:6:{i:0;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:52;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:22:\"Lecture Notes - Week 1\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 1\";s:14:\"description_en\";s:45:\"Excepturi odit praesentium itaque voluptatum.\";s:14:\"description_ar\";s:46:\"Doloribus est quam omnis dolorem et provident.\";s:9:\"file_path\";s:50:\"materials/93675603-b16a-39b0-8a11-5347c74df98a.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:5365899;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-30 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:52;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:22:\"Lecture Notes - Week 1\";s:8:\"title_ar\";s:32:\"Lecture Notes - الأسبوع 1\";s:14:\"description_en\";s:45:\"Excepturi odit praesentium itaque voluptatum.\";s:14:\"description_ar\";s:46:\"Doloribus est quam omnis dolorem et provident.\";s:9:\"file_path\";s:50:\"materials/93675603-b16a-39b0-8a11-5347c74df98a.mp3\";s:9:\"file_type\";s:3:\"mp3\";s:9:\"file_size\";i:5365899;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-30 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:53;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:19:\" worksheet - Week 2\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 2\";s:14:\"description_en\";s:29:\"Eaque cupiditate quia eos ut.\";s:14:\"description_ar\";s:39:\"Nihil qui nesciunt maiores mollitia ex.\";s:9:\"file_path\";s:51:\"materials/6345c2b2-e98e-31f9-8bbe-3062c1f3dab3.pptx\";s:9:\"file_type\";s:4:\"pptx\";s:9:\"file_size\";i:17133229;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-26 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:53;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:19:\" worksheet - Week 2\";s:8:\"title_ar\";s:29:\" worksheet - الأسبوع 2\";s:14:\"description_en\";s:29:\"Eaque cupiditate quia eos ut.\";s:14:\"description_ar\";s:39:\"Nihil qui nesciunt maiores mollitia ex.\";s:9:\"file_path\";s:51:\"materials/6345c2b2-e98e-31f9-8bbe-3062c1f3dab3.pptx\";s:9:\"file_type\";s:4:\"pptx\";s:9:\"file_size\";i:17133229;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-26 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:54;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:20:\"Study Guide - Week 3\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 3\";s:14:\"description_en\";s:41:\"Quia iure illum eius nostrum dignissimos.\";s:14:\"description_ar\";s:44:\"Reprehenderit natus consequatur alias omnis.\";s:9:\"file_path\";s:50:\"materials/2e2520ff-54ac-38df-9d98-4f4fba7cee44.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:4588350;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-15 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:54;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:20:\"Study Guide - Week 3\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 3\";s:14:\"description_en\";s:41:\"Quia iure illum eius nostrum dignissimos.\";s:14:\"description_ar\";s:44:\"Reprehenderit natus consequatur alias omnis.\";s:9:\"file_path\";s:50:\"materials/2e2520ff-54ac-38df-9d98-4f4fba7cee44.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:4588350;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-15 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:55;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:20:\"Study Guide - Week 4\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 4\";s:14:\"description_en\";s:29:\"Sed cumque qui fuga enim nam.\";s:14:\"description_ar\";s:44:\"Quidem ducimus est quidem ipsum et et dolor.\";s:9:\"file_path\";s:50:\"materials/608a08d2-3a77-377d-a353-86cc4ab7cef5.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:31002647;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-21 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:55;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:20:\"Study Guide - Week 4\";s:8:\"title_ar\";s:30:\"Study Guide - الأسبوع 4\";s:14:\"description_en\";s:29:\"Sed cumque qui fuga enim nam.\";s:14:\"description_ar\";s:44:\"Quidem ducimus est quidem ipsum et et dolor.\";s:9:\"file_path\";s:50:\"materials/608a08d2-3a77-377d-a353-86cc4ab7cef5.pdf\";s:9:\"file_type\";s:3:\"pdf\";s:9:\"file_size\";i:31002647;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-21 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:56;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:27:\"Reference Material - Week 5\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 5\";s:14:\"description_en\";s:69:\"Nihil dolore explicabo nihil temporibus suscipit quam quam inventore.\";s:14:\"description_ar\";s:42:\"Temporibus facere enim animi modi qui vel.\";s:9:\"file_path\";s:50:\"materials/582acdae-3690-377d-952c-3ca5ad3237dc.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:4202054;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-17 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:56;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:27:\"Reference Material - Week 5\";s:8:\"title_ar\";s:37:\"Reference Material - الأسبوع 5\";s:14:\"description_en\";s:69:\"Nihil dolore explicabo nihil temporibus suscipit quam quam inventore.\";s:14:\"description_ar\";s:42:\"Temporibus facere enim animi modi qui vel.\";s:9:\"file_path\";s:50:\"materials/582acdae-3690-377d-952c-3ca5ad3237dc.ppt\";s:9:\"file_type\";s:3:\"ppt\";s:9:\"file_size\";i:4202054;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-17 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}i:5;O:25:\"App\\Models\\CourseMaterial\":34:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:16:\"course_materials\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:19:{s:2:\"id\";i:57;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:25:\"Practice Problem - Week 6\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 6\";s:14:\"description_en\";s:42:\"Eveniet nesciunt vel qui unde ut nesciunt.\";s:14:\"description_ar\";s:35:\"Suscipit molestias et in itaque in.\";s:9:\"file_path\";s:50:\"materials/8e9c0352-d1a7-3391-bb50-f1271a3b0bc7.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:38747443;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-28 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:11:\"\0*\0original\";a:19:{s:2:\"id\";i:57;s:18:\"course_offering_id\";i:12;s:8:\"title_en\";s:25:\"Practice Problem - Week 6\";s:8:\"title_ar\";s:35:\"Practice Problem - الأسبوع 6\";s:14:\"description_en\";s:42:\"Eveniet nesciunt vel qui unde ut nesciunt.\";s:14:\"description_ar\";s:35:\"Suscipit molestias et in itaque in.\";s:9:\"file_path\";s:50:\"materials/8e9c0352-d1a7-3391-bb50-f1271a3b0bc7.mp4\";s:9:\"file_type\";s:3:\"mp4\";s:9:\"file_size\";i:38747443;s:11:\"uploaded_by\";i:8;s:10:\"is_visible\";i:1;s:14:\"download_count\";i:0;s:12:\"published_at\";s:19:\"2026-01-28 23:38:39\";s:10:\"view_count\";i:0;s:10:\"created_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:39\";s:10:\"deleted_at\";N;s:19:\"requires_completion\";i:0;s:15:\"completion_type\";s:4:\"view\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:7:{s:12:\"published_at\";s:8:\"datetime\";s:10:\"is_visible\";s:7:\"boolean\";s:14:\"download_count\";s:7:\"integer\";s:9:\"file_size\";s:7:\"integer\";s:10:\"sort_order\";s:7:\"integer\";s:19:\"requires_completion\";s:7:\"boolean\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:16:{i:0;s:18:\"course_offering_id\";i:1;s:8:\"title_en\";i:2;s:8:\"title_ar\";i:3;s:14:\"description_en\";i:4;s:14:\"description_ar\";i:5;s:9:\"file_path\";i:6;s:9:\"file_name\";i:7;s:9:\"file_type\";i:8;s:9:\"file_size\";i:9;s:11:\"uploaded_by\";i:10;s:10:\"is_visible\";i:11;s:14:\"download_count\";i:12;s:12:\"published_at\";i:13;s:10:\"sort_order\";i:14;s:19:\"requires_completion\";i:15;s:15:\"completion_type\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:12:{i:0;s:9:\"course_id\";i:1;s:11:\"semester_id\";i:2;s:10:\"teacher_id\";i:3;s:12:\"section_name\";i:4;s:8:\"capacity\";i:5;s:14:\"enrolled_count\";i:6;s:13:\"schedule_json\";i:7;s:13:\"schedule_type\";i:8;s:10:\"class_days\";i:9;s:4:\"room\";i:10;s:9:\"is_active\";i:11;s:22:\"is_visible_to_students\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}s:5:\"marks\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:10:\"student_id\";i:1;s:18:\"course_offering_id\";i:2;s:6:\"status\";i:3;s:11:\"enrolled_at\";i:4;s:10:\"dropped_at\";i:5;s:11:\"admin_notes\";i:6;s:20:\"completed_activities\";i:7;s:16:\"total_activities\";i:8;s:19:\"progress_percentage\";i:9;s:11:\"final_grade\";i:10;s:12:\"grade_letter\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:19:\"unpaidMandatoryFees\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:4:{i:0;O:23:\"App\\Models\\FeeStructure\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:14:\"fee_structures\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:16:{s:2:\"id\";i:1;s:7:\"name_en\";s:24:\"Tuition Fee (Per Credit)\";s:7:\"name_ar\";s:52:\"رسوم دراسية (لكل ساعة معتمدة)\";s:6:\"amount\";s:6:\"500.00\";s:8:\"currency\";s:3:\"USD\";s:16:\"academic_year_id\";i:2;s:4:\"type\";s:7:\"tuition\";s:12:\"payment_type\";s:8:\"one_time\";s:12:\"is_mandatory\";i:1;s:8:\"due_date\";N;s:8:\"major_id\";N;s:11:\"semester_id\";N;s:9:\"is_active\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";}s:11:\"\0*\0original\";a:16:{s:2:\"id\";i:1;s:7:\"name_en\";s:24:\"Tuition Fee (Per Credit)\";s:7:\"name_ar\";s:52:\"رسوم دراسية (لكل ساعة معتمدة)\";s:6:\"amount\";s:6:\"500.00\";s:8:\"currency\";s:3:\"USD\";s:16:\"academic_year_id\";i:2;s:4:\"type\";s:7:\"tuition\";s:12:\"payment_type\";s:8:\"one_time\";s:12:\"is_mandatory\";i:1;s:8:\"due_date\";N;s:8:\"major_id\";N;s:11:\"semester_id\";N;s:9:\"is_active\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:6:\"amount\";s:9:\"decimal:2\";s:8:\"due_date\";s:4:\"date\";s:12:\"is_mandatory\";s:7:\"boolean\";s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:7:\"name_en\";i:1;s:7:\"name_ar\";i:2;s:6:\"amount\";i:3;s:8:\"currency\";i:4;s:16:\"academic_year_id\";i:5;s:4:\"type\";i:6;s:12:\"payment_type\";i:7;s:12:\"is_mandatory\";i:8;s:8:\"due_date\";i:9;s:14:\"description_en\";i:10;s:14:\"description_ar\";i:11;s:10:\"sort_order\";i:12;s:8:\"major_id\";i:13;s:11:\"semester_id\";i:14;s:9:\"is_active\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:1;O:23:\"App\\Models\\FeeStructure\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:14:\"fee_structures\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:16:{s:2:\"id\";i:2;s:7:\"name_en\";s:16:\"Registration Fee\";s:7:\"name_ar\";s:23:\"رسوم التسجيل\";s:6:\"amount\";s:6:\"200.00\";s:8:\"currency\";s:3:\"USD\";s:16:\"academic_year_id\";i:2;s:4:\"type\";s:12:\"registration\";s:12:\"payment_type\";s:8:\"one_time\";s:12:\"is_mandatory\";i:1;s:8:\"due_date\";N;s:8:\"major_id\";N;s:11:\"semester_id\";N;s:9:\"is_active\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";}s:11:\"\0*\0original\";a:16:{s:2:\"id\";i:2;s:7:\"name_en\";s:16:\"Registration Fee\";s:7:\"name_ar\";s:23:\"رسوم التسجيل\";s:6:\"amount\";s:6:\"200.00\";s:8:\"currency\";s:3:\"USD\";s:16:\"academic_year_id\";i:2;s:4:\"type\";s:12:\"registration\";s:12:\"payment_type\";s:8:\"one_time\";s:12:\"is_mandatory\";i:1;s:8:\"due_date\";N;s:8:\"major_id\";N;s:11:\"semester_id\";N;s:9:\"is_active\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:6:\"amount\";s:9:\"decimal:2\";s:8:\"due_date\";s:4:\"date\";s:12:\"is_mandatory\";s:7:\"boolean\";s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:7:\"name_en\";i:1;s:7:\"name_ar\";i:2;s:6:\"amount\";i:3;s:8:\"currency\";i:4;s:16:\"academic_year_id\";i:5;s:4:\"type\";i:6;s:12:\"payment_type\";i:7;s:12:\"is_mandatory\";i:8;s:8:\"due_date\";i:9;s:14:\"description_en\";i:10;s:14:\"description_ar\";i:11;s:10:\"sort_order\";i:12;s:8:\"major_id\";i:13;s:11:\"semester_id\";i:14;s:9:\"is_active\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:2;O:23:\"App\\Models\\FeeStructure\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:14:\"fee_structures\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:16:{s:2:\"id\";i:4;s:7:\"name_en\";s:11:\"Library Fee\";s:7:\"name_ar\";s:23:\"رسوم المكتبة\";s:6:\"amount\";s:5:\"50.00\";s:8:\"currency\";s:3:\"USD\";s:16:\"academic_year_id\";i:2;s:4:\"type\";s:7:\"library\";s:12:\"payment_type\";s:8:\"one_time\";s:12:\"is_mandatory\";i:1;s:8:\"due_date\";N;s:8:\"major_id\";N;s:11:\"semester_id\";N;s:9:\"is_active\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";}s:11:\"\0*\0original\";a:16:{s:2:\"id\";i:4;s:7:\"name_en\";s:11:\"Library Fee\";s:7:\"name_ar\";s:23:\"رسوم المكتبة\";s:6:\"amount\";s:5:\"50.00\";s:8:\"currency\";s:3:\"USD\";s:16:\"academic_year_id\";i:2;s:4:\"type\";s:7:\"library\";s:12:\"payment_type\";s:8:\"one_time\";s:12:\"is_mandatory\";i:1;s:8:\"due_date\";N;s:8:\"major_id\";N;s:11:\"semester_id\";N;s:9:\"is_active\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:6:\"amount\";s:9:\"decimal:2\";s:8:\"due_date\";s:4:\"date\";s:12:\"is_mandatory\";s:7:\"boolean\";s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:7:\"name_en\";i:1;s:7:\"name_ar\";i:2;s:6:\"amount\";i:3;s:8:\"currency\";i:4;s:16:\"academic_year_id\";i:5;s:4:\"type\";i:6;s:12:\"payment_type\";i:7;s:12:\"is_mandatory\";i:8;s:8:\"due_date\";i:9;s:14:\"description_en\";i:10;s:14:\"description_ar\";i:11;s:10:\"sort_order\";i:12;s:8:\"major_id\";i:13;s:11:\"semester_id\";i:14;s:9:\"is_active\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}i:3;O:23:\"App\\Models\\FeeStructure\":33:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:14:\"fee_structures\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:16:{s:2:\"id\";i:5;s:7:\"name_en\";s:15:\"General Tuition\";s:7:\"name_ar\";s:42:\"الرسوم الدراسية العامة\";s:6:\"amount\";s:6:\"200.00\";s:8:\"currency\";s:3:\"JOD\";s:16:\"academic_year_id\";i:1;s:4:\"type\";s:7:\"tuition\";s:12:\"payment_type\";s:8:\"one_time\";s:12:\"is_mandatory\";i:1;s:8:\"due_date\";N;s:8:\"major_id\";N;s:11:\"semester_id\";i:1;s:9:\"is_active\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";}s:11:\"\0*\0original\";a:16:{s:2:\"id\";i:5;s:7:\"name_en\";s:15:\"General Tuition\";s:7:\"name_ar\";s:42:\"الرسوم الدراسية العامة\";s:6:\"amount\";s:6:\"200.00\";s:8:\"currency\";s:3:\"JOD\";s:16:\"academic_year_id\";i:1;s:4:\"type\";s:7:\"tuition\";s:12:\"payment_type\";s:8:\"one_time\";s:12:\"is_mandatory\";i:1;s:8:\"due_date\";N;s:8:\"major_id\";N;s:11:\"semester_id\";i:1;s:9:\"is_active\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-02-11 23:38:24\";s:10:\"updated_at\";s:19:\"2026-02-11 23:38:24\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:5:{s:6:\"amount\";s:9:\"decimal:2\";s:8:\"due_date\";s:4:\"date\";s:12:\"is_mandatory\";s:7:\"boolean\";s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:15:{i:0;s:7:\"name_en\";i:1;s:7:\"name_ar\";i:2;s:6:\"amount\";i:3;s:8:\"currency\";i:4;s:16:\"academic_year_id\";i:5;s:4:\"type\";i:6;s:12:\"payment_type\";i:7;s:12:\"is_mandatory\";i:8;s:8:\"due_date\";i:9;s:14:\"description_en\";i:10;s:14:\"description_ar\";i:11;s:10:\"sort_order\";i:12;s:8:\"major_id\";i:13;s:11:\"semester_id\";i:14;s:9:\"is_active\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:15:\"enrolledCourses\";r:294;s:18:\"pendingAssignments\";i:0;s:14:\"attendanceRate\";i:85;s:3:\"gpa\";N;s:14:\"upcomingEvents\";O:29:\"Illuminate\\Support\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}}', 1771198199); -- -------------------------------------------------------- -- -- Table structure for table `cache_locks` -- CREATE TABLE `cache_locks` ( `key` varchar(255) NOT NULL, `owner` varchar(255) NOT NULL, `expiration` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `calendar_events` -- CREATE TABLE `calendar_events` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `description` text DEFAULT NULL, `start_time` datetime NOT NULL, `end_time` datetime DEFAULT NULL, `is_all_day` tinyint(1) NOT NULL DEFAULT 0, `color` varchar(255) NOT NULL DEFAULT '#3b82f6', `event_type` enum('personal','course','assessment','meeting','reminder') NOT NULL DEFAULT 'personal', `course_offering_id` bigint(20) UNSIGNED DEFAULT NULL, `assessment_id` bigint(20) UNSIGNED DEFAULT NULL, `is_recurring` tinyint(1) NOT NULL DEFAULT 0, `recurrence_pattern` varchar(255) DEFAULT NULL, `recurrence_end` datetime DEFAULT NULL, `is_shared` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `calendar_events` -- INSERT INTO `calendar_events` (`id`, `user_id`, `title`, `description`, `start_time`, `end_time`, `is_all_day`, `color`, `event_type`, `course_offering_id`, `assessment_id`, `is_recurring`, `recurrence_pattern`, `recurrence_end`, `is_shared`, `created_at`, `updated_at`) VALUES (2, 2, 'tdh', 'etdh', '2026-02-18 01:03:00', NULL, 0, '#f59e0b', 'meeting', NULL, NULL, 0, NULL, NULL, 0, '2026-02-14 22:03:34', '2026-02-14 22:04:21'), (3, 2, 'jbjb', 'hmg', '2026-02-21 01:10:00', NULL, 0, '#ef4444', 'personal', NULL, NULL, 0, NULL, NULL, 0, '2026-02-14 22:10:41', '2026-02-14 22:10:41'), (4, 2, 'cxgnj', 'fhgdd', '2026-02-15 01:11:00', '2026-02-28 01:11:00', 0, '#8b5cf6', 'personal', NULL, NULL, 0, NULL, NULL, 0, '2026-02-14 22:11:25', '2026-02-14 22:11:25'); -- -------------------------------------------------------- -- -- Table structure for table `competencies` -- CREATE TABLE `competencies` ( `id` bigint(20) UNSIGNED NOT NULL, `code` varchar(255) NOT NULL, `name_en` varchar(255) NOT NULL, `name_ar` varchar(255) NOT NULL, `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `level` enum('beginner','intermediate','advanced') NOT NULL DEFAULT 'intermediate', `sort_order` int(10) UNSIGNED NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `competency_course` -- CREATE TABLE `competency_course` ( `id` bigint(20) UNSIGNED NOT NULL, `competency_id` bigint(20) UNSIGNED NOT NULL, `course_id` bigint(20) UNSIGNED NOT NULL, `mastery_level` enum('introduced','reinforced','mastered') NOT NULL DEFAULT 'reinforced', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `conversations` -- CREATE TABLE `conversations` ( `id` bigint(20) UNSIGNED NOT NULL, `type` enum('direct','group','course_announcement','system') NOT NULL DEFAULT 'direct', `course_offering_id` bigint(20) UNSIGNED DEFAULT NULL, `title_en` varchar(255) DEFAULT NULL, `title_ar` varchar(255) DEFAULT NULL, `created_by` bigint(20) UNSIGNED NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `last_message_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `conversations` -- INSERT INTO `conversations` (`id`, `type`, `course_offering_id`, `title_en`, `title_ar`, `created_by`, `is_active`, `last_message_at`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'direct', NULL, 'Chat with Miss Araceli Dickinson V', 'محادثة مع Miss Araceli Dickinson V', 2, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (2, 'direct', NULL, 'Chat with Miss Maurine Toy DDS', 'محادثة مع Miss Maurine Toy DDS', 2, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (3, 'direct', NULL, 'Chat with Xzavier Orn', 'محادثة مع Xzavier Orn', 2, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (4, 'direct', NULL, 'Chat with Anita Runolfsdottir III', 'محادثة مع Anita Runolfsdottir III', 2, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (5, 'direct', NULL, 'Chat with Alexis Boyer', 'محادثة مع Alexis Boyer', 2, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (6, 'direct', NULL, 'Chat with Sara Khalid', 'محادثة مع Sara Khalid', 5, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (7, 'direct', NULL, 'Chat with Lina Ahmed', 'محادثة مع Lina Ahmed', 5, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (8, 'direct', NULL, 'Chat with Miss Maurine Toy DDS', 'محادثة مع Miss Maurine Toy DDS', 5, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (9, 'direct', NULL, 'Chat with Prince Pacocha', 'محادثة مع Prince Pacocha', 5, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (10, 'direct', NULL, 'Chat with Diego Goyette', 'محادثة مع Diego Goyette', 5, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (11, 'direct', NULL, 'Chat with Yousef Salem', 'محادثة مع Yousef Salem', 6, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (12, 'direct', NULL, 'Chat with Dr. Wendell Yost', 'محادثة مع Dr. Wendell Yost', 6, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (13, 'direct', NULL, 'Chat with Prince Pacocha', 'محادثة مع Prince Pacocha', 6, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (14, 'direct', NULL, 'Chat with Larry Hoeger II', 'محادثة مع Larry Hoeger II', 6, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (15, 'direct', NULL, 'Chat with Alexis Boyer', 'محادثة مع Alexis Boyer', 6, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (16, 'direct', NULL, 'Chat with Lina Ahmed', 'محادثة مع Lina Ahmed', 7, 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (17, 'direct', NULL, 'Chat with Tyrell West', 'محادثة مع Tyrell West', 7, 1, '2026-02-11 20:38:40', '2026-02-11 20:38:39', '2026-02-11 20:38:40', NULL), (18, 'direct', NULL, 'Chat with Prof. Toni Gerlach I', 'محادثة مع Prof. Toni Gerlach I', 7, 1, '2026-02-11 20:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (19, 'direct', NULL, 'Chat with Larry Hoeger II', 'محادثة مع Larry Hoeger II', 7, 1, '2026-02-11 20:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (20, 'direct', NULL, 'Chat with Reinhold Klein Sr.', 'محادثة مع Reinhold Klein Sr.', 7, 1, '2026-02-11 20:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (21, 'direct', NULL, 'Chat with Sara Khalid', 'محادثة مع Sara Khalid', 8, 1, '2026-02-11 20:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (22, 'direct', NULL, 'Chat with Lina Ahmed', 'محادثة مع Lina Ahmed', 8, 1, '2026-02-11 20:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (23, 'direct', NULL, 'Chat with Tyrell West', 'محادثة مع Tyrell West', 8, 1, '2026-02-11 20:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (24, 'direct', NULL, 'Chat with Prince Pacocha', 'محادثة مع Prince Pacocha', 8, 1, '2026-02-11 20:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (25, 'direct', NULL, 'Chat with Augustus Haley', 'محادثة مع Augustus Haley', 8, 1, '2026-02-11 20:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL); -- -------------------------------------------------------- -- -- Table structure for table `conversation_participants` -- CREATE TABLE `conversation_participants` ( `conversation_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `joined_at` timestamp NOT NULL DEFAULT current_timestamp(), `last_read_at` timestamp NULL DEFAULT NULL, `is_muted` tinyint(1) NOT NULL DEFAULT 0, `is_archived` tinyint(1) NOT NULL DEFAULT 0, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `conversation_participants` -- INSERT INTO `conversation_participants` (`conversation_id`, `user_id`, `joined_at`, `last_read_at`, `is_muted`, `is_archived`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 2, '2026-02-11 23:38:39', '2026-02-10 16:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (1, 15, '2026-02-11 23:38:39', '2026-02-11 00:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (2, 2, '2026-02-11 23:38:39', '2026-02-09 21:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (2, 19, '2026-02-11 23:38:39', '2026-02-11 20:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (3, 2, '2026-02-11 23:38:39', '2026-02-11 04:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (3, 20, '2026-02-11 23:38:39', '2026-02-11 04:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (4, 2, '2026-02-11 23:38:39', '2026-02-13 19:53:03', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-13 19:53:03'), (4, 22, '2026-02-11 23:38:39', '2026-02-10 21:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (5, 2, '2026-02-11 23:38:39', '2026-02-13 19:47:50', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-13 19:47:50'), (5, 34, '2026-02-11 23:38:39', '2026-02-11 06:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (6, 5, '2026-02-11 23:38:39', '2026-02-11 19:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (6, 11, '2026-02-11 23:38:39', '2026-02-11 18:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (7, 5, '2026-02-11 23:38:39', '2026-02-11 06:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (7, 13, '2026-02-11 23:38:39', '2026-02-11 17:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (8, 5, '2026-02-11 23:38:39', '2026-02-10 18:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (8, 19, '2026-02-11 23:38:39', '2026-02-11 12:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (9, 5, '2026-02-11 23:38:39', '2026-02-10 14:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (9, 24, '2026-02-11 23:38:39', '2026-02-11 00:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (10, 5, '2026-02-11 23:38:39', '2026-02-11 16:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (10, 26, '2026-02-11 23:38:39', '2026-02-11 08:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (11, 6, '2026-02-11 23:38:39', '2026-02-10 12:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (11, 14, '2026-02-11 23:38:39', '2026-02-11 01:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (12, 6, '2026-02-11 23:38:39', '2026-02-11 19:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (12, 23, '2026-02-11 23:38:39', '2026-02-11 16:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (13, 6, '2026-02-11 23:38:39', '2026-02-09 20:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (13, 24, '2026-02-11 23:38:39', '2026-02-11 06:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (14, 6, '2026-02-11 23:38:39', '2026-02-09 23:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (14, 25, '2026-02-11 23:38:39', '2026-02-10 20:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (15, 6, '2026-02-11 23:38:39', '2026-02-11 01:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (15, 34, '2026-02-11 23:38:39', '2026-02-11 02:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (16, 7, '2026-02-11 23:38:39', '2026-02-10 11:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (16, 13, '2026-02-11 23:38:39', '2026-02-11 07:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (17, 7, '2026-02-11 23:38:40', '2026-02-11 08:38:39', 0, 0, NULL, '2026-02-11 20:38:39', '2026-02-11 20:38:39'), (17, 17, '2026-02-11 23:38:40', '2026-02-10 22:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (18, 7, '2026-02-11 23:38:40', '2026-02-10 07:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (18, 18, '2026-02-11 23:38:40', '2026-02-11 04:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (19, 7, '2026-02-11 23:38:40', '2026-02-10 18:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (19, 25, '2026-02-11 23:38:40', '2026-02-11 11:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (20, 7, '2026-02-11 23:38:40', '2026-02-11 10:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (20, 33, '2026-02-11 23:38:40', '2026-02-11 02:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (21, 8, '2026-02-11 23:38:40', '2026-02-11 15:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (21, 11, '2026-02-11 23:38:40', '2026-02-11 05:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (22, 8, '2026-02-11 23:38:40', '2026-02-10 13:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (22, 13, '2026-02-11 23:38:40', '2026-02-11 04:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (23, 8, '2026-02-11 23:38:40', '2026-02-11 15:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (23, 17, '2026-02-11 23:38:40', '2026-02-11 10:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (24, 8, '2026-02-11 23:38:40', '2026-02-11 15:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (24, 24, '2026-02-11 23:38:40', '2026-02-11 14:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (25, 8, '2026-02-11 23:38:40', '2026-02-11 13:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'), (25, 29, '2026-02-11 23:38:40', '2026-02-11 03:38:40', 0, 0, NULL, '2026-02-11 20:38:40', '2026-02-11 20:38:40'); -- -------------------------------------------------------- -- -- Table structure for table `courses` -- CREATE TABLE `courses` ( `id` bigint(20) UNSIGNED NOT NULL, `code` varchar(20) NOT NULL, `name_en` varchar(255) NOT NULL, `name_ar` varchar(255) NOT NULL, `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `credits` tinyint(3) UNSIGNED NOT NULL, `department_id` bigint(20) UNSIGNED NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `sort_order` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `courses` -- INSERT INTO `courses` (`id`, `code`, `name_en`, `name_ar`, `description_en`, `description_ar`, `credits`, `department_id`, `is_active`, `sort_order`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'CS101', 'Introduction to Programming', 'مقدمة في البرمجة', NULL, NULL, 3, 1, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (2, 'CS201', 'Data Structures', 'هياكل البيانات', NULL, NULL, 3, 1, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (3, 'CS301', 'Algorithms', 'الخوارزميات', NULL, NULL, 3, 1, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (4, 'CS350', 'Web Development', 'تطوير الويب', NULL, NULL, 3, 1, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (5, 'CS420', 'Database Systems', 'نظم قواعد البيانات', NULL, NULL, 3, 1, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (6, 'EE101', 'Circuit Analysis', 'تحليل الدوائر', NULL, NULL, 4, 2, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (7, 'EE202', 'Digital Logic Design', 'تصميم المنطق الرقمي', NULL, NULL, 3, 2, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (8, 'ACC101', 'Financial Accounting', 'محاسبة مالية', NULL, NULL, 3, 4, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (9, 'ACC201', 'Managerial Accounting', 'محاسبة إدارية', NULL, NULL, 3, 4, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (10, 'CS102', 'Programming Fundamentals', 'أساسيات البرمجة', 'Introduction to programming concepts using Python.', 'مقدمة في مفاهيم البرمجة باستخدام بايثون.', 4, 1, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (11, 'CS202', 'Object-Oriented Programming', 'البرمجة الكائنية', 'OOP concepts and implementation.', 'مفاهيم البرمجة الكائنية وتطبيقاتها.', 3, 1, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (12, 'CS302', 'Web Development', 'تطوير الويب', 'Frontend and backend web development.', 'تطوير الويب من الواجهة والخادم.', 4, 1, 1, 0, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL); -- -------------------------------------------------------- -- -- Table structure for table `course_materials` -- CREATE TABLE `course_materials` ( `id` bigint(20) UNSIGNED NOT NULL, `course_offering_id` bigint(20) UNSIGNED NOT NULL, `title_en` varchar(255) NOT NULL, `title_ar` varchar(255) NOT NULL, `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `file_path` varchar(255) NOT NULL, `file_type` varchar(50) DEFAULT NULL, `file_size` bigint(20) UNSIGNED DEFAULT NULL, `uploaded_by` bigint(20) UNSIGNED NOT NULL, `is_visible` tinyint(1) NOT NULL DEFAULT 1, `download_count` int(11) NOT NULL DEFAULT 0, `published_at` timestamp NOT NULL DEFAULT current_timestamp(), `view_count` int(10) UNSIGNED NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `requires_completion` tinyint(1) NOT NULL DEFAULT 0, `completion_type` enum('view','manual') NOT NULL DEFAULT 'view' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `course_materials` -- INSERT INTO `course_materials` (`id`, `course_offering_id`, `title_en`, `title_ar`, `description_en`, `description_ar`, `file_path`, `file_type`, `file_size`, `uploaded_by`, `is_visible`, `download_count`, `published_at`, `view_count`, `created_at`, `updated_at`, `deleted_at`, `requires_completion`, `completion_type`) VALUES (1, 1, 'Reference Material - Week 1', 'Reference Material - الأسبوع 1', 'Porro labore ducimus quod ad.', 'Dignissimos quia laudantium aspernatur est quibusdam et itaque.', 'materials/68e3ccb9-2143-31f4-bee4-ca407cf004c1.mp3', 'mp3', 27802851, 6, 1, 0, '2026-01-16 20:38:38', 0, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL, 0, 'view'), (2, 1, 'Practice Problem - Week 2', 'Practice Problem - الأسبوع 2', 'Non qui praesentium non non.', 'Eum eum perspiciatis hic minima ducimus impedit.', 'materials/e22a36e8-52ff-3e6f-bd27-be24a8ff54cd.xls', 'xls', 33221119, 6, 1, 0, '2026-01-23 20:38:38', 0, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL, 0, 'view'), (3, 1, 'Lecture Notes - Week 3', 'Lecture Notes - الأسبوع 3', 'Possimus et dicta velit nihil.', 'Nisi aliquam saepe explicabo veritatis voluptas provident error autem.', 'materials/6d82340b-f33e-3ab1-ac0e-d3e4d1b66727.zip', 'zip', 22434926, 6, 1, 0, '2026-01-25 20:38:38', 0, '2026-02-11 20:38:38', '2026-02-11 20:38:38', NULL, 0, 'view'), (4, 1, 'Reference Material - Week 4', 'Reference Material - الأسبوع 4', 'Voluptas quisquam veritatis enim.', 'Consequatur soluta itaque inventore iure.', 'materials/8c2cc900-c132-3b01-8838-79909d626fec.zip', 'zip', 45787404, 6, 1, 0, '2026-02-06 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (5, 2, 'Reading Assignment - Week 1', 'Reading Assignment - الأسبوع 1', 'Distinctio voluptas laborum consequatur molestias.', 'Quo quod amet autem repellendus modi.', 'materials/85111908-0a9a-3244-ad96-a5b640ccb765.mp4', 'mp4', 32577609, 5, 1, 0, '2026-02-04 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (6, 2, 'Study Guide - Week 2', 'Study Guide - الأسبوع 2', 'Laudantium temporibus consequatur atque sunt molestiae tempore.', 'Est est nemo labore dicta non.', 'materials/7f2b6d7f-5035-3330-b619-a5e0b7ffb92d.png', 'png', 26861725, 5, 1, 0, '2026-02-09 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (7, 2, ' worksheet - Week 3', ' worksheet - الأسبوع 3', 'Id omnis tempore earum quos sunt.', 'Quo nobis quaerat ut dolorem vel.', 'materials/356a0898-6275-39b1-aa5b-b5e160e37a16.mp3', 'mp3', 42685531, 5, 1, 0, '2026-01-21 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (8, 2, ' worksheet - Week 4', ' worksheet - الأسبوع 4', 'Nulla nulla commodi quam numquam commodi.', 'Libero et amet quia.', 'materials/a185a036-6748-33ff-a202-baf1e0297347.jpg', 'jpg', 35026865, 5, 1, 0, '2026-02-07 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (9, 3, 'Reading Assignment - Week 1', 'Reading Assignment - الأسبوع 1', 'Enim ut impedit eius.', 'Iste deleniti cum quidem soluta aut adipisci eveniet esse.', 'materials/0f5a71ec-ad77-3888-84a5-5e0e878b5511.xls', 'xls', 12486011, 9, 1, 0, '2026-02-01 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (10, 3, 'Reference Material - Week 2', 'Reference Material - الأسبوع 2', 'Sit possimus et sapiente optio.', 'Occaecati praesentium veniam nihil distinctio.', 'materials/4f41929a-ab06-3fa2-9322-0cf1140e0ef4.doc', 'doc', 44644150, 9, 1, 0, '2026-02-04 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (11, 3, 'Practice Problem - Week 3', 'Practice Problem - الأسبوع 3', 'Quisquam temporibus ut deserunt quos.', 'Quo aliquam dolorem quo minus similique saepe est voluptates.', 'materials/d6e581d0-9901-3df7-9923-4f06559d864d.pptx', 'pptx', 47597417, 9, 1, 0, '2026-02-03 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (12, 3, 'Reading Assignment - Week 4', 'Reading Assignment - الأسبوع 4', 'Ratione dolores quis dicta veniam perspiciatis est iusto repudiandae.', 'Nihil voluptas recusandae aliquid eos quasi.', 'materials/2f62c8ef-bada-35b0-9873-766c3092b418.zip', 'zip', 45689844, 9, 1, 0, '2026-01-26 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (13, 3, 'Reference Material - Week 5', 'Reference Material - الأسبوع 5', 'Tempore et velit et sint architecto iste mollitia repellendus.', 'Et optio ad rerum et maiores sunt illum vel.', 'materials/818ab3ba-85e0-3a0a-bdd8-745ae1f71e40.ppt', 'ppt', 12240330, 9, 1, 0, '2026-01-17 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (14, 3, 'Reading Assignment - Week 6', 'Reading Assignment - الأسبوع 6', 'Dolorum delectus quos dolores est dolor natus.', 'Ea quis et magni molestiae quibusdam iure quam.', 'materials/d38ca057-3c89-317f-bf47-9d0df6f29355.docx', 'docx', 31741731, 9, 1, 0, '2026-02-02 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (15, 4, 'Study Guide - Week 1', 'Study Guide - الأسبوع 1', 'Veniam amet dolores quibusdam voluptas ipsum doloremque.', 'Quis tempore amet praesentium molestiae tempore nemo a.', 'materials/ee603d31-25fe-3b37-9332-96385e6ff5a3.pdf', 'pdf', 16267433, 9, 1, 0, '2026-02-09 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (16, 4, 'Practice Problem - Week 2', 'Practice Problem - الأسبوع 2', 'Praesentium quidem reprehenderit animi sed voluptates similique rerum.', 'Debitis ut et nemo dolorum veniam nobis.', 'materials/8f512e5f-6e8d-39e4-a78c-e484e871b302.xls', 'xls', 44812711, 9, 1, 0, '2026-01-25 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (17, 4, 'Reference Material - Week 3', 'Reference Material - الأسبوع 3', 'Recusandae veritatis asperiores velit qui velit aut.', 'Accusamus quod porro velit consequatur qui accusamus molestiae.', 'materials/b1454782-ebbc-371e-846e-620064dafed6.xlsx', 'xlsx', 36945586, 9, 1, 0, '2026-01-22 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (18, 4, ' worksheet - Week 4', ' worksheet - الأسبوع 4', 'Assumenda autem cumque consequatur dolorem est distinctio velit et.', 'Iste neque rerum aut quod eaque eius.', 'materials/7392f093-0743-3e73-9353-563b10864fc4.doc', 'doc', 11493690, 9, 1, 0, '2026-01-25 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (19, 5, 'Practice Problem - Week 1', 'Practice Problem - الأسبوع 1', 'Ut delectus deleniti quis sint.', 'Quia asperiores saepe distinctio culpa quisquam nihil fugiat cupiditate.', 'materials/92fdf875-ab0e-37fe-975c-46aed4458971.docx', 'docx', 11368915, 6, 1, 0, '2026-02-08 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (20, 5, 'Reference Material - Week 2', 'Reference Material - الأسبوع 2', 'Pariatur explicabo dolore odit consequatur.', 'Qui non qui et totam quia maiores et praesentium.', 'materials/c9f62047-3d47-3370-b4df-999d5e2d06ab.mp4', 'mp4', 33988863, 6, 1, 0, '2026-02-09 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (21, 5, 'Reference Material - Week 3', 'Reference Material - الأسبوع 3', 'Vel ad tenetur perspiciatis doloribus.', 'Id aut quia assumenda possimus vel atque numquam labore.', 'materials/f23a7ee7-ad34-3004-9626-30c067252bb1.pdf', 'pdf', 5527440, 6, 1, 0, '2026-01-31 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (22, 5, ' worksheet - Week 4', ' worksheet - الأسبوع 4', 'In expedita quisquam qui atque.', 'Corporis eius repudiandae quam in dolorem ut.', 'materials/1f885eb9-b454-34cb-969e-0dc2c87be9bd.mp3', 'mp3', 45730342, 6, 1, 0, '2026-01-16 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (23, 5, 'Practice Problem - Week 5', 'Practice Problem - الأسبوع 5', 'Voluptas qui accusantium molestiae enim consequuntur rem.', 'Commodi quia eum neque sint cumque sint qui accusantium.', 'materials/782f95da-2a48-366f-9efa-c07fbbafe68b.mp3', 'mp3', 34233905, 6, 1, 0, '2026-01-26 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (24, 5, 'Reading Assignment - Week 6', 'Reading Assignment - الأسبوع 6', 'Quo sunt adipisci officiis vero distinctio.', 'Temporibus consectetur error quam et eos aliquid maxime.', 'materials/a541dd37-fd86-3cc0-b41e-442443fb044f.docx', 'docx', 14365552, 6, 1, 0, '2026-01-13 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (25, 5, 'Practice Problem - Week 7', 'Practice Problem - الأسبوع 7', 'Quas voluptate alias culpa ut.', 'Et amet qui voluptatem.', 'materials/0390c0b9-7834-3764-96fd-0f7008ebdf93.pptx', 'pptx', 45880987, 6, 1, 0, '2026-01-27 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (26, 6, 'Practice Problem - Week 1', 'Practice Problem - الأسبوع 1', 'Non nulla repellat eligendi aut nihil.', 'Excepturi dolor est eveniet iusto.', 'materials/4584f9c9-7076-3db3-a93b-b0363aa0bd1a.xls', 'xls', 43827751, 5, 1, 0, '2026-01-14 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (27, 6, 'Reference Material - Week 2', 'Reference Material - الأسبوع 2', 'Quia et minima vel vero molestiae.', 'Dolorem et repudiandae nostrum consequatur rerum qui consequatur.', 'materials/5f634fd1-5941-39ca-a6bf-b7f1f7c39ca6.ppt', 'ppt', 26463035, 5, 1, 0, '2026-01-27 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (28, 6, 'Lecture Notes - Week 3', 'Lecture Notes - الأسبوع 3', 'Illum labore et nam et dignissimos in.', 'Dolores repudiandae quis exercitationem quo alias.', 'materials/e6566007-8b05-39d8-b8dd-6f04c2502dca.xlsx', 'xlsx', 25336741, 5, 1, 0, '2026-01-12 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (29, 6, 'Reading Assignment - Week 4', 'Reading Assignment - الأسبوع 4', 'Quaerat eveniet beatae molestiae iure voluptate.', 'Eum error officia laboriosam iusto est quasi sint harum.', 'materials/e07d97f5-ce94-31d8-b4da-abf036e78154.zip', 'zip', 45316349, 5, 1, 0, '2026-01-13 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (30, 7, 'Lecture Notes - Week 1', 'Lecture Notes - الأسبوع 1', 'Non voluptatem ad molestiae consectetur reiciendis eius quod.', 'Asperiores quae et quia amet exercitationem.', 'materials/c6ca3b3d-8cc9-3285-bb15-de063cc1947f.mp4', 'mp4', 20800646, 5, 1, 0, '2026-01-28 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (31, 7, ' worksheet - Week 2', ' worksheet - الأسبوع 2', 'Suscipit veniam pariatur eum minima blanditiis suscipit.', 'Unde praesentium voluptatum odio et temporibus delectus.', 'materials/b734b66f-f8ef-3965-b89e-f45169904918.png', 'png', 20497004, 5, 1, 0, '2026-02-04 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (32, 7, 'Lecture Notes - Week 3', 'Lecture Notes - الأسبوع 3', 'Sunt corporis itaque accusamus eius quia.', 'Aut hic quibusdam sit dolore molestiae.', 'materials/ef9c818f-5c12-3e0d-a574-4e576fa62f92.ppt', 'ppt', 22135491, 5, 1, 0, '2026-01-13 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (33, 7, 'Reference Material - Week 4', 'Reference Material - الأسبوع 4', 'Est deleniti tenetur odio aspernatur eos repellendus nisi voluptates.', 'Maxime qui quis placeat quae.', 'materials/38b81603-7b5e-39ee-bb45-8202a7afbe3e.xls', 'xls', 47447859, 5, 1, 0, '2026-02-06 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (34, 7, 'Study Guide - Week 5', 'Study Guide - الأسبوع 5', 'Distinctio amet necessitatibus voluptate minima.', 'Ullam quaerat cumque ut ut.', 'materials/e469e6a1-f1d8-300d-86d9-2f86d39e645b.ppt', 'ppt', 26964528, 5, 1, 0, '2026-01-25 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (35, 7, 'Reference Material - Week 6', 'Reference Material - الأسبوع 6', 'Id rerum iusto voluptatum sapiente ut id quo.', 'Voluptas provident sunt ea dolorem.', 'materials/4efe0c65-5ea0-3fe4-874f-7b7018655559.docx', 'docx', 8013845, 5, 1, 0, '2026-01-23 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (36, 7, 'Reading Assignment - Week 7', 'Reading Assignment - الأسبوع 7', 'Hic aliquid animi ea et.', 'Voluptatum culpa molestiae consectetur.', 'materials/a6cea497-ddae-3094-b047-ec24d815cb40.ppt', 'ppt', 3991875, 5, 1, 0, '2026-01-25 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (37, 8, ' worksheet - Week 1', ' worksheet - الأسبوع 1', 'Ut quod non at.', 'Et sunt quos enim quaerat et reprehenderit quo et.', 'materials/799a6a58-af7c-3a36-85c2-5de370a18462.xls', 'xls', 3837519, 6, 1, 0, '2026-01-20 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (38, 8, 'Lecture Notes - Week 2', 'Lecture Notes - الأسبوع 2', 'Ea et qui quibusdam corrupti temporibus ipsum accusantium.', 'Non numquam deleniti debitis nemo modi mollitia.', 'materials/b7042f99-f39b-36b2-a18a-98e2a6cc05d2.xls', 'xls', 42778419, 6, 1, 0, '2026-02-02 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (39, 8, 'Reading Assignment - Week 3', 'Reading Assignment - الأسبوع 3', 'Perspiciatis quaerat quaerat adipisci.', 'Aspernatur perspiciatis dolorum quia.', 'materials/2efd3a70-0755-3f5a-b01d-e77fb71e8c0e.pdf', 'pdf', 45688207, 6, 1, 0, '2026-02-09 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (40, 8, ' worksheet - Week 4', ' worksheet - الأسبوع 4', 'Voluptatem non mollitia consequatur rerum veniam sint.', 'Fugiat necessitatibus vero tenetur esse dolore unde occaecati.', 'materials/74408038-e499-398d-afac-b39bb18a600b.ppt', 'ppt', 97210, 6, 1, 0, '2026-02-10 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (41, 9, 'Reading Assignment - Week 1', 'Reading Assignment - الأسبوع 1', 'Dolor quis soluta quod dolor aut dignissimos est.', 'Sed quam alias provident delectus repudiandae aut est.', 'materials/0690d7c9-521a-37a0-ba3d-1a71351e038b.mp4', 'mp4', 9519939, 7, 1, 0, '2026-02-07 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (42, 9, 'Study Guide - Week 2', 'Study Guide - الأسبوع 2', 'Sint consectetur placeat soluta tenetur facere recusandae eaque.', 'Ut eligendi provident et id et quod.', 'materials/f3ea727b-7ee0-3d2c-8849-c121ab85c249.xlsx', 'xlsx', 49313540, 7, 1, 0, '2026-01-27 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (43, 9, 'Reading Assignment - Week 3', 'Reading Assignment - الأسبوع 3', 'Nobis ipsam perferendis voluptatum qui.', 'Voluptatum quaerat sed perferendis sed doloremque aliquam quasi.', 'materials/6f3f1d45-5ac1-3e56-86b1-e1149f66ec98.jpg', 'jpg', 49001853, 7, 1, 0, '2026-01-31 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (44, 9, 'Reference Material - Week 4', 'Reference Material - الأسبوع 4', 'Natus eum repellendus assumenda qui possimus magni corrupti.', 'Id sapiente quia ut modi id placeat.', 'materials/9d4818db-9822-307d-8791-3df92641bc6a.zip', 'zip', 1293030, 7, 1, 0, '2026-01-18 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (45, 10, ' worksheet - Week 1', ' worksheet - الأسبوع 1', 'Atque harum iure sed expedita nihil non laudantium.', 'Beatae qui sequi ipsum expedita asperiores.', 'materials/11b726c2-1c3b-34f9-b588-27a366440ce9.pptx', 'pptx', 22628225, 7, 1, 0, '2026-02-05 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (46, 10, 'Practice Problem - Week 2', 'Practice Problem - الأسبوع 2', 'Et voluptates quas officiis.', 'Consequatur nobis voluptatem ex rerum.', 'materials/c2b47cfd-91a2-3804-9b63-c839839d225d.png', 'png', 13418999, 7, 1, 0, '2026-01-23 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (47, 10, 'Reading Assignment - Week 3', 'Reading Assignment - الأسبوع 3', 'Quo molestiae optio omnis voluptas quod corporis.', 'Consequatur quia sed ullam impedit iure qui deleniti.', 'materials/3d1d5442-ebd8-3a5b-a9f4-2961e3191a47.png', 'png', 40146459, 7, 1, 0, '2026-01-12 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (48, 11, 'Lecture Notes - Week 1', 'Lecture Notes - الأسبوع 1', 'Quisquam explicabo ullam voluptatem ut id alias.', 'Quidem tempore repellendus ipsa ut minima.', 'materials/1cfc45c8-e762-327b-ac9a-0d086d39c60c.jpg', 'jpg', 34442962, 8, 1, 0, '2026-02-08 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (49, 11, 'Study Guide - Week 2', 'Study Guide - الأسبوع 2', 'Sed est fuga dolores autem dolorem nihil pariatur beatae.', 'Possimus repudiandae et fugiat maiores.', 'materials/d8db791e-a00d-32a6-8a43-e17f0bcc1df5.mp4', 'mp4', 44055773, 8, 1, 0, '2026-01-15 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (50, 11, ' worksheet - Week 3', ' worksheet - الأسبوع 3', 'Dolores molestiae totam quos dolores a magnam molestiae.', 'Quis ratione distinctio culpa possimus at.', 'materials/e578bf37-f04f-32fd-a3e2-b79e950a594a.pdf', 'pdf', 26749366, 8, 1, 0, '2026-02-04 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (51, 11, 'Practice Problem - Week 4', 'Practice Problem - الأسبوع 4', 'Rem molestias voluptatem quo voluptas labore.', 'Est aut sed consequatur ad consequuntur harum modi quod.', 'materials/4fd5dd5f-952d-342c-9591-214869cb54bd.doc', 'doc', 26934620, 8, 1, 0, '2026-01-13 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (52, 12, 'Lecture Notes - Week 1', 'Lecture Notes - الأسبوع 1', 'Excepturi odit praesentium itaque voluptatum.', 'Doloribus est quam omnis dolorem et provident.', 'materials/93675603-b16a-39b0-8a11-5347c74df98a.mp3', 'mp3', 5365899, 8, 1, 0, '2026-01-30 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (53, 12, ' worksheet - Week 2', ' worksheet - الأسبوع 2', 'Eaque cupiditate quia eos ut.', 'Nihil qui nesciunt maiores mollitia ex.', 'materials/6345c2b2-e98e-31f9-8bbe-3062c1f3dab3.pptx', 'pptx', 17133229, 8, 1, 0, '2026-01-26 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (54, 12, 'Study Guide - Week 3', 'Study Guide - الأسبوع 3', 'Quia iure illum eius nostrum dignissimos.', 'Reprehenderit natus consequatur alias omnis.', 'materials/2e2520ff-54ac-38df-9d98-4f4fba7cee44.pdf', 'pdf', 4588350, 8, 1, 0, '2026-01-15 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (55, 12, 'Study Guide - Week 4', 'Study Guide - الأسبوع 4', 'Sed cumque qui fuga enim nam.', 'Quidem ducimus est quidem ipsum et et dolor.', 'materials/608a08d2-3a77-377d-a353-86cc4ab7cef5.pdf', 'pdf', 31002647, 8, 1, 0, '2026-01-21 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (56, 12, 'Reference Material - Week 5', 'Reference Material - الأسبوع 5', 'Nihil dolore explicabo nihil temporibus suscipit quam quam inventore.', 'Temporibus facere enim animi modi qui vel.', 'materials/582acdae-3690-377d-952c-3ca5ad3237dc.ppt', 'ppt', 4202054, 8, 1, 0, '2026-01-17 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'), (57, 12, 'Practice Problem - Week 6', 'Practice Problem - الأسبوع 6', 'Eveniet nesciunt vel qui unde ut nesciunt.', 'Suscipit molestias et in itaque in.', 'materials/8e9c0352-d1a7-3391-bb50-f1271a3b0bc7.mp4', 'mp4', 38747443, 8, 1, 0, '2026-01-28 20:38:39', 0, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 0, 'view'); -- -------------------------------------------------------- -- -- Table structure for table `course_offerings` -- CREATE TABLE `course_offerings` ( `id` bigint(20) UNSIGNED NOT NULL, `course_id` bigint(20) UNSIGNED NOT NULL, `semester_id` bigint(20) UNSIGNED NOT NULL, `teacher_id` bigint(20) UNSIGNED DEFAULT NULL, `section_name` varchar(20) DEFAULT NULL, `capacity` int(10) UNSIGNED NOT NULL DEFAULT 50, `enrolled_count` int(10) UNSIGNED NOT NULL DEFAULT 0, `schedule_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`schedule_json`)), `room` varchar(255) DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `is_visible_to_students` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `course_offerings` -- INSERT INTO `course_offerings` (`id`, `course_id`, `semester_id`, `teacher_id`, `section_name`, `capacity`, `enrolled_count`, `schedule_json`, `room`, `is_active`, `is_visible_to_students`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 1, 6, 'A', 50, 24, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS101-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS101-1\\\"}]\"', 'Room CS101-1', 1, 1, '2026-02-11 20:38:20', '2026-02-11 20:38:24', NULL), (2, 10, 1, 5, 'A', 50, 20, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS102-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS102-1\\\"}]\"', 'Room CS102-1', 1, 1, '2026-02-11 20:38:20', '2026-02-11 20:38:23', NULL), (3, 2, 1, 9, 'A', 50, 23, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS201-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS201-1\\\"}]\"', 'Room CS201-1', 1, 1, '2026-02-11 20:38:20', '2026-02-11 20:38:23', NULL), (4, 11, 1, 9, 'A', 50, 22, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS202-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS202-1\\\"}]\"', 'Room CS202-1', 1, 1, '2026-02-11 20:38:20', '2026-02-11 20:38:23', NULL), (5, 3, 1, 6, 'A', 50, 18, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS301-1\\\"}]\"', 'Room CS301-1', 1, 1, '2026-02-11 20:38:20', '2026-02-11 20:38:24', NULL), (6, 12, 1, 5, 'A', 50, 17, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS302-1\\\"}]\"', 'Room CS302-1', 1, 1, '2026-02-11 20:38:20', '2026-02-11 20:38:24', NULL), (7, 4, 1, 5, 'A', 50, 21, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS350-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS350-1\\\"}]\"', 'Room CS350-1', 1, 1, '2026-02-11 20:38:21', '2026-02-11 20:38:24', NULL), (8, 5, 1, 6, 'A', 50, 20, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS420-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room CS420-1\\\"}]\"', 'Room CS420-1', 1, 1, '2026-02-11 20:38:21', '2026-02-11 20:38:24', NULL), (9, 6, 1, 7, 'A', 50, 16, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE101-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE101-1\\\"}]\"', 'Room EE101-1', 1, 1, '2026-02-11 20:38:21', '2026-02-11 20:38:24', NULL), (10, 7, 1, 7, 'A', 50, 17, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE202-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room EE202-1\\\"}]\"', 'Room EE202-1', 1, 1, '2026-02-11 20:38:21', '2026-02-11 20:38:24', NULL), (11, 8, 1, 8, 'A', 50, 25, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC101-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC101-1\\\"}]\"', 'Room ACC101-1', 1, 1, '2026-02-11 20:38:21', '2026-02-11 20:38:24', NULL), (12, 9, 1, 8, 'A', 50, 15, '\"[{\\\"day\\\":\\\"Sunday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC201-1\\\"},{\\\"day\\\":\\\"Tuesday\\\",\\\"time\\\":\\\"10:00-12:00\\\",\\\"room\\\":\\\"Room ACC201-1\\\"}]\"', 'Room ACC201-1', 1, 1, '2026-02-11 20:38:21', '2026-02-11 20:38:24', NULL); -- -------------------------------------------------------- -- -- Table structure for table `course_prerequisites` -- CREATE TABLE `course_prerequisites` ( `course_id` bigint(20) UNSIGNED NOT NULL, `prerequisite_course_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `departments` -- CREATE TABLE `departments` ( `id` bigint(20) UNSIGNED NOT NULL, `faculty_id` bigint(20) UNSIGNED NOT NULL, `code` varchar(20) DEFAULT NULL, `name_en` varchar(255) NOT NULL, `name_ar` varchar(255) NOT NULL, `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `head_name_en` varchar(255) DEFAULT NULL, `head_name_ar` varchar(255) DEFAULT NULL, `location` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `sort_order` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `departments` -- INSERT INTO `departments` (`id`, `faculty_id`, `code`, `name_en`, `name_ar`, `description_en`, `description_ar`, `head_name_en`, `head_name_ar`, `location`, `phone`, `is_active`, `sort_order`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 'CS', 'Computer Science', 'علوم الحاسوب', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (2, 1, 'EE', 'Electrical Engineering', 'هندسة كهربائية', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (3, 1, 'ME', 'Mechanical Engineering', 'هندسة ميكانيكية', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (4, 2, 'ACC', 'Accounting', 'محاسبة', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (5, 2, 'MKT', 'Marketing', 'تسويق', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (6, 2, 'FIN', 'Finance', 'مالية', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (7, 3, 'BIO', 'Biology', 'بيولوجيا', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (8, 3, 'CHEM', 'Chemistry', 'كيمياء', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (9, 4, 'MED', 'General Medicine', 'الطب العام', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL); -- -------------------------------------------------------- -- -- Table structure for table `discussions` -- CREATE TABLE `discussions` ( `id` bigint(20) UNSIGNED NOT NULL, `course_offering_id` bigint(20) UNSIGNED DEFAULT NULL, `parent_id` bigint(20) UNSIGNED DEFAULT NULL, `author_id` bigint(20) UNSIGNED NOT NULL, `title_en` varchar(255) DEFAULT NULL, `title_ar` varchar(255) DEFAULT NULL, `content_en` text NOT NULL, `content_ar` text NOT NULL, `is_pinned` tinyint(1) NOT NULL DEFAULT 0, `is_locked` tinyint(1) NOT NULL DEFAULT 0, `view_count` int(10) UNSIGNED NOT NULL DEFAULT 0, `reply_count` int(10) UNSIGNED NOT NULL DEFAULT 0, `last_reply_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `discussions` -- INSERT INTO `discussions` (`id`, `course_offering_id`, `parent_id`, `author_id`, `title_en`, `title_ar`, `content_en`, `content_ar`, `is_pinned`, `is_locked`, `view_count`, `reply_count`, `last_reply_at`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, NULL, 6, 'Final Exam Information', 'معلومات الامتحان النهائي', 'Porro ad illum adipisci non et nemo. Ipsa ducimus accusantium voluptas cupiditate sed. Nihil dolor velit quaerat error.\n\nUt aut autem dolorem sint eum dolores. Reiciendis optio distinctio et eos. Deserunt et placeat consequatur deserunt et ad. In impedit doloremque facere voluptatibus doloribus. Et corporis consequatur laudantium tempore.', 'Aut suscipit accusantium numquam qui amet illum. Soluta omnis voluptatem dicta numquam hic. Sed autem cumque tenetur rerum.\n\nSit quis eum expedita ut sunt qui recusandae. Molestiae et dolorum sit nostrum. Vel est sit iste ut. Animi earum ducimus deleniti sed sint laudantium odio.', 1, 0, 0, 0, NULL, '2026-01-11 20:38:39', '2026-02-11 20:38:39', NULL), (2, 1, NULL, 6, 'Final Exam Information', 'معلومات الامتحان النهائي', 'Explicabo est expedita minus ut hic voluptas. Magni est sit labore consectetur delectus omnis nostrum. Saepe esse et pariatur expedita illo blanditiis blanditiis distinctio.\n\nEst harum quae sapiente enim animi. Consequatur totam labore ipsam eos iste unde occaecati. Rem at incidunt fuga sint sint.', 'Quis consequatur corrupti fuga delectus similique autem ipsum ipsam. Dolorem iure sunt atque corporis iste voluptatibus consequatur. Non in expedita recusandae numquam.\n\nDolores qui excepturi veniam mollitia iste ullam. Voluptates repellendus libero similique ut eum quae et. Natus sit eligendi impedit.', 1, 0, 0, 0, NULL, '2026-01-20 20:38:39', '2026-02-11 20:38:39', NULL), (3, 1, NULL, 2, 'Possimus autem exercitationem itaque.', 'Dolorem aut dicta recusandae atque animi.', 'Maxime possimus sed eius magnam non necessitatibus facere. Dolorem velit vel qui temporibus quaerat consequuntur. Ut facilis tempore exercitationem nihil facere saepe.\n\nAb voluptatum dignissimos et. Consequatur aliquam vitae ut asperiores eos sunt laudantium. Dolore dolores itaque est nihil distinctio reprehenderit deleniti. Est voluptas pariatur recusandae voluptas laborum culpa id.', 'Est cum officiis nihil voluptas pariatur sed fuga. Laboriosam veritatis perferendis explicabo. Aut omnis est a. Et velit distinctio quia rerum culpa id consequatur qui.\n\nVeniam doloremque ducimus dolorum et. Rerum voluptates est aut officia corrupti qui.', 0, 0, 0, 0, NULL, '2026-01-05 20:38:39', '2026-02-11 20:38:39', NULL), (4, 1, NULL, 20, 'Dolorem magnam sapiente nulla ipsa nam velit.', 'Quasi et modi sed nisi commodi.', 'Quia temporibus et quia eum et perspiciatis. Qui fugiat rerum mollitia.\n\nAut sequi sit dolores et. Nesciunt aut itaque rerum eligendi. Autem vitae quo ad blanditiis laborum autem voluptas beatae.', 'Rerum debitis dolor omnis commodi. Molestiae qui placeat vel quod. Aspernatur quasi officia quo enim distinctio.\n\nAut iusto sapiente rerum perferendis nam occaecati aspernatur. Alias molestiae qui sed vel itaque magnam. Facilis pariatur sed numquam quam nam ab. Maiores assumenda et quo animi.', 0, 0, 0, 0, NULL, '2026-01-09 20:38:39', '2026-02-11 20:38:39', NULL), (5, 1, NULL, 7, 'Dolorem dolore et et molestias dolorem.', 'Cum voluptas sit dolor.', 'Officia soluta quod repellat facere quis tempora. Perspiciatis laudantium odio eos illum excepturi. Aut quos dolor tenetur ipsum nihil.\n\nQuia enim deleniti dolor laudantium. Excepturi error nihil rerum facere animi nulla. Doloremque soluta exercitationem repudiandae natus facilis eveniet. Unde distinctio rerum dolorum consectetur aliquam rerum itaque.', 'Ducimus ipsa nulla sunt distinctio. Accusantium voluptas cum ex sed nostrum.\n\nTempore impedit quam molestiae assumenda. Dolor dignissimos amet placeat id est. Inventore laboriosam repudiandae ab. Fugiat aut eligendi est autem.', 0, 0, 0, 0, NULL, '2026-01-15 20:38:39', '2026-02-11 20:38:39', NULL), (6, 1, NULL, 10, 'Voluptas assumenda nihil nisi quis rem quibusdam.', 'Commodi et sed quasi.', 'Facere unde quidem magnam et et blanditiis iusto. Eligendi et id fugit adipisci. Omnis quia vero ut dolorum.\n\nAliquid autem nihil dolorum eum temporibus. Velit mollitia ratione laboriosam minima sit. Harum harum corporis sit officia sed aut mollitia. Quia alias voluptas dicta inventore rerum ipsam repudiandae.', 'Voluptate officia voluptatum qui non qui aut reiciendis ducimus. Autem non consectetur est et minus saepe nostrum. Beatae facere laboriosam occaecati. Laudantium molestiae quia sunt praesentium impedit consequatur et illo. Et aut sit dolore ullam.\n\nAut et error tempora. Possimus nemo id officiis distinctio sit quis adipisci. Debitis harum officia non quis in provident fugiat impedit. Repudiandae neque eius laudantium. Dolor est repudiandae corrupti.', 0, 0, 0, 0, NULL, '2026-01-22 20:38:39', '2026-02-11 20:38:39', NULL), (7, 2, NULL, 5, 'Midterm Announcement', 'تحديث الجدول الزمني', 'Ipsum dolores quaerat aut sint et et. Iure assumenda et ipsa est nulla ullam porro necessitatibus. Ea molestias alias doloremque et libero doloribus quis.\n\nId architecto sequi sit quo qui. Non enim dolorem consequuntur inventore a at consequatur. Vero vero illo illum nisi nesciunt praesentium molestiae cum.', 'Atque est eaque eaque eius consequuntur. Accusamus velit beatae voluptatem necessitatibus. Consectetur veritatis dicta sint totam.\n\nDolores est voluptatum deleniti voluptatem fuga mollitia dolorum velit. Praesentium iusto non eveniet rem debitis. Illum fugit in accusantium aut facere aut nemo. Est modi veritatis accusantium harum minima et rerum.', 1, 0, 0, 0, NULL, '2026-01-10 20:38:39', '2026-02-11 20:38:39', NULL), (8, 2, NULL, 5, 'Midterm Announcement', 'هام: إرشادات المقرر', 'Iure deserunt iste sed modi nihil sed fugit. Et voluptate quidem dignissimos molestias libero qui quae. Cumque architecto illo a non.\n\nOfficiis officia quis nobis magni nobis vero. Perspiciatis ex hic ipsum sunt dolores error odio assumenda. Animi dolores vitae sapiente error et ea ea soluta.', 'Illum qui vel earum inventore ad porro. Aliquam voluptatem et explicabo incidunt esse. Asperiores tenetur velit odio ipsam. Saepe dolores consequuntur neque enim.\n\nSapiente nostrum sint quibusdam maxime. Delectus ex voluptatum voluptatem. Voluptas illo quod voluptatum molestias ratione.', 1, 0, 0, 0, NULL, '2026-01-05 20:38:39', '2026-02-11 20:38:39', NULL), (9, 2, NULL, 6, 'Ea iure occaecati ratione est.', 'Excepturi beatae quis eum.', 'Et eum dolorum quod sit. Est fuga ut earum maiores explicabo vel. Aut ratione hic rerum perferendis quidem.\n\nAutem et nisi qui assumenda ut facere quia repudiandae. Voluptate libero aut dolorum ipsam quia id. Aut voluptatibus et incidunt dicta eveniet magnam in. Sapiente est sunt molestiae autem et sint suscipit.', 'Qui voluptatum ducimus fugiat dolorum. Quia consectetur vel aliquid nisi. Dolorum dolores illum culpa modi labore aut.\n\nSaepe ab voluptatem corporis et ut facere cumque. Iure quidem facilis voluptas cumque ea quae. Soluta nihil quisquam dolores tempora ea illo a. Velit harum deleniti vero autem in sunt est.', 0, 0, 0, 0, NULL, '2026-02-10 20:38:39', '2026-02-11 20:38:39', NULL), (10, 2, NULL, 23, 'Quo excepturi est aspernatur veritatis autem.', 'Magnam tempora inventore ipsa minima.', 'Molestiae et praesentium non vel quis nisi rerum nostrum. Non minus et consectetur aut. Fuga voluptatum numquam quam ipsa quo. Qui qui dolores quaerat voluptas commodi.\n\nNulla atque id eligendi at non et cumque accusamus. Eveniet enim blanditiis placeat porro. Eos saepe eos dolores. Quo molestiae laudantium sit.', 'Impedit ut officia iusto in iusto. Animi dolorem modi pariatur hic. Necessitatibus nostrum animi animi error sit autem. Repudiandae laboriosam laborum autem et ea incidunt consectetur.\n\nOccaecati dolore officiis natus. Incidunt aut in nesciunt qui et optio. A iure eaque aliquam ullam consequatur blanditiis.', 0, 0, 0, 0, NULL, '2026-01-04 20:38:39', '2026-02-11 20:38:39', NULL), (11, 2, NULL, 9, 'Quia non harum sit saepe.', 'Accusantium et aut odio eveniet suscipit.', 'Qui deleniti incidunt quia. Accusantium optio itaque velit ipsam. Quas sed ut sed ipsa laudantium.\n\nLaborum sit hic et itaque natus officia. Mollitia repellat maiores omnis minima error beatae. Eius fuga distinctio vel. Quasi quam iste velit est non perspiciatis.', 'Sit id dicta reprehenderit cum aspernatur at atque. Rerum et sunt explicabo aliquam. Quos voluptatibus rerum nobis aut. Vero quia autem eligendi officia.\n\nDolor aut quod officia consequatur. Asperiores voluptatibus harum adipisci eos. Veritatis maiores accusantium quod ex quibusdam magni sit dolorem. Excepturi dignissimos rerum sed minus sapiente minus.', 0, 0, 0, 0, NULL, '2026-01-05 20:38:39', '2026-02-11 20:38:39', NULL), (12, 3, NULL, 9, 'Final Exam Information', 'إعلان امتحان منتصف الفصل', 'Aliquam excepturi qui aut explicabo eaque. Tempore ipsum temporibus ut doloribus ipsum esse pariatur. Cumque incidunt eum fuga tempore. Consequatur rerum ex deleniti distinctio explicabo aut dolor error. Eligendi et eos natus aut.\n\nRepellat in voluptas eum ullam quaerat vitae minus. Hic et officia laudantium vero. Et sunt est earum rerum exercitationem voluptates. Dolor explicabo est eum est.', 'Perspiciatis hic perferendis aut est. Molestiae itaque quaerat officia et nemo. Autem perspiciatis aut quis qui cupiditate possimus molestiae. Ex necessitatibus quasi aut iste unde saepe.\n\nRerum ea harum nulla deleniti. Sunt voluptas occaecati expedita placeat quis deserunt. Qui consequatur eveniet sed rerum adipisci corporis voluptatem. Consectetur velit sit non natus consequuntur est.', 1, 0, 0, 0, NULL, '2026-01-02 20:38:39', '2026-02-11 20:38:39', NULL), (13, 3, NULL, 17, 'Error sapiente libero sunt.', 'Et non inventore consequatur ab molestiae et.', 'Optio pariatur dolor cum molestiae saepe earum et repudiandae. Error sit autem dolorem corrupti debitis ab non magnam. Perferendis accusantium voluptates quisquam error non iure doloremque et. Pariatur qui illo qui voluptates consequatur ea. Tenetur vel iusto rem fugit neque.\n\nExplicabo quos autem ipsa possimus nihil libero nobis voluptas. Esse velit nemo omnis et doloribus nam. Aliquid ut atque dolores ipsam aliquam. Minima cupiditate voluptas quia velit qui eos.', 'Ipsam voluptates voluptate ea. Aut placeat deleniti rerum inventore id veniam voluptas. Ea repudiandae porro autem id. Perspiciatis quis repudiandae fuga illo blanditiis consectetur eos rem.\n\nCum quibusdam quibusdam blanditiis ut eaque sint inventore. Cum dolores sed aut explicabo suscipit quia. Rerum non est rem odio aut. Earum officiis vero tenetur labore voluptatum.', 0, 0, 0, 0, NULL, '2026-02-06 20:38:39', '2026-02-11 20:38:39', NULL), (14, 3, NULL, 24, 'Temporibus distinctio ducimus qui.', 'Veritatis natus quia ut autem distinctio.', 'Omnis sint veritatis suscipit. Id atque minus optio non. Soluta similique est est quisquam delectus.\n\nRerum quod dolore recusandae. Qui magnam corporis quo id dolor vel consequatur harum. Sunt illo non praesentium quae amet eum soluta.', 'Ut et officia perferendis repellat in hic. Et aut voluptatum nobis quia consequatur possimus. Et omnis velit qui quaerat maiores et molestias. Pariatur reiciendis quo beatae enim voluptatem corrupti. Sunt quis illo necessitatibus quas qui minus temporibus.\n\nOdio veniam rerum adipisci veniam repudiandae et porro aut. Eveniet laborum mollitia inventore sed mollitia ex explicabo esse. Ab omnis doloremque est voluptatem cupiditate provident voluptas.', 0, 0, 0, 0, NULL, '2026-02-06 20:38:39', '2026-02-11 20:38:39', NULL), (15, 4, NULL, 9, 'Schedule Update', 'معلومات الامتحان النهائي', 'Omnis doloremque cupiditate natus a quas maiores. Hic voluptatem sit sit et. Eligendi eos distinctio repellendus veritatis dolorum corporis rerum. Libero quas atque omnis et voluptate aut officiis alias.\n\nEt minus voluptatum excepturi et dolores ut. Non illo voluptate necessitatibus libero. Voluptate eos culpa qui voluptate alias.', 'Et quia ipsum atque nam consequatur. Minima sint fuga sit eveniet. Reprehenderit eum soluta vitae autem nihil. Provident dolorem cupiditate recusandae et.\n\nFugiat expedita voluptatem sequi. Omnis aut nihil temporibus mollitia. Et aut sapiente aut maiores.', 1, 0, 0, 0, NULL, '2026-01-08 20:38:39', '2026-02-11 20:38:39', NULL), (16, 4, NULL, 14, 'Delectus quis esse a quo blanditiis.', 'Necessitatibus minima omnis sunt non consequatur.', 'Doloribus recusandae perspiciatis ea. Quidem est officiis voluptatum. Tempora est quidem temporibus at.\n\nUt dolor neque et similique provident. Iusto quas omnis mollitia culpa itaque. Sunt exercitationem sequi atque. Repudiandae cum molestiae sunt modi.', 'Veniam repellat id eaque eos qui. Sapiente et sint ipsum iste. Magnam illo aut magnam. Perferendis et aut neque nihil.\n\nFacere officiis accusamus veniam. Quia fugiat incidunt quibusdam nam nobis iure. Et impedit at occaecati labore architecto.', 0, 0, 0, 0, NULL, '2025-12-31 20:38:39', '2026-02-11 20:38:39', NULL), (17, 4, NULL, 34, 'Architecto nemo inventore dignissimos.', 'Ut aliquam autem reiciendis est.', 'Consectetur quo dicta ipsam veniam itaque. Quasi quia vitae dolorum architecto vel laboriosam. Et qui labore eum tenetur optio. Distinctio iure explicabo et quia.\n\nNihil et rerum eaque dolores repudiandae voluptatibus consequatur. Aut odit provident sequi earum ut. Non voluptate consequuntur est enim.', 'Harum inventore enim nulla eligendi. Quo id possimus quia magni necessitatibus. Alias quaerat voluptatem aliquam aliquid. Et quia sequi laborum illo ab dolor fugiat.\n\nRerum et itaque omnis sint impedit sapiente. Expedita nesciunt sed inventore fuga velit. Dolorem rerum repudiandae et consequatur sint facere pariatur. Dignissimos ullam nisi voluptatum quisquam. Rerum ipsa sequi nostrum.', 0, 0, 0, 0, NULL, '2026-01-31 20:38:39', '2026-02-11 20:38:39', NULL), (18, 4, NULL, 5, 'Nam asperiores incidunt minus debitis doloremque alias.', 'Aut omnis iure doloremque esse est.', 'Adipisci qui odit velit nihil ducimus. Necessitatibus architecto blanditiis ab iste ab dolorem ex. Delectus cupiditate quia quia et.\n\nEx cupiditate rerum eum excepturi corrupti. Perferendis dignissimos ea sint assumenda voluptates neque qui vitae.', 'Quo dignissimos omnis amet quod explicabo quod. Delectus sapiente sed est vel aliquid ducimus. Dolores similique odio mollitia labore sint quas. Ut et natus suscipit architecto animi.\n\nPorro et quae possimus placeat asperiores facere numquam. Alias aut qui aperiam alias sequi. Mollitia excepturi consequatur perferendis mollitia minima et voluptatibus. Vitae dolorem quia dignissimos minus qui illum et.', 0, 0, 0, 0, NULL, '2026-01-29 20:38:39', '2026-02-11 20:38:39', NULL), (19, 4, NULL, 5, 'Cum suscipit libero possimus ducimus pariatur.', 'Ducimus et incidunt rerum molestiae.', 'Deleniti error et numquam aliquam qui voluptate eum. Autem nam aperiam voluptatem itaque est delectus. Perferendis et nam ut sit excepturi id. Aut sint aperiam reprehenderit animi.\n\nNon repellat et totam dignissimos error mollitia. Quasi consequuntur enim voluptas omnis odit iste quas voluptatem. Voluptatem odio molestiae expedita sunt beatae et.', 'Id facilis repellendus qui est reiciendis odio et. Molestiae maxime possimus iure nulla ad et omnis. Hic est illo blanditiis quia voluptatem iusto quisquam unde. Non omnis nemo ipsa non est dolore provident. Corrupti minus quia voluptas et quae consequatur.\n\nEa cupiditate aut voluptatem aliquam. Dolor in perspiciatis doloremque dignissimos voluptate quos voluptate. Omnis omnis id aut dolorem aut laborum doloribus illo. Ea quia saepe laudantium.', 0, 0, 0, 0, NULL, '2026-01-29 20:38:39', '2026-02-11 20:38:39', NULL), (20, 4, NULL, 7, 'Consequatur molestiae culpa quibusdam ea nostrum.', 'Possimus qui veritatis exercitationem recusandae.', 'Laborum dignissimos ut debitis qui alias minima. Sunt quam blanditiis provident aut ut ut.\n\nEt optio nam officia. Modi voluptate id similique quasi nostrum aut. Autem et commodi sed labore accusamus dolorem.', 'Omnis voluptatem et magnam reiciendis magni ipsum. Accusantium iure nulla dolorem dolorem necessitatibus omnis consequatur voluptas. Quaerat consequuntur magnam exercitationem eligendi.\n\nRerum rerum officia culpa id. Qui consequuntur ut sint quisquam tenetur et eum. Vel autem id aut eveniet.', 0, 0, 0, 0, NULL, '2026-01-17 20:38:39', '2026-02-11 20:38:39', NULL), (21, 5, NULL, 6, 'Midterm Announcement', 'هام: إرشادات المقرر', 'A quia vitae minima quis. Repellendus excepturi sed veniam rerum veritatis quibusdam. Delectus tenetur at sed et eum blanditiis non.\n\nVoluptatem cum beatae veritatis iste. Ut aspernatur voluptas et et laudantium repellat reprehenderit.', 'Voluptas voluptatem minima voluptatem minima modi qui sunt. Est qui blanditiis quasi.\n\nCorrupti commodi ipsum suscipit ullam assumenda exercitationem est. Quo repellat ipsam error totam enim esse. Rerum id nesciunt maiores pariatur veniam dolores occaecati.', 1, 0, 0, 0, NULL, '2026-01-07 20:38:39', '2026-02-11 20:38:39', NULL), (22, 5, NULL, 6, 'Schedule Update', 'إعلان امتحان منتصف الفصل', 'Ex tempora ut nostrum fuga amet molestiae. Temporibus officia ipsa quia sequi maiores et possimus modi.\n\nSit et magnam expedita repellendus ratione non deserunt. Quas quia rerum est praesentium beatae voluptate. Maxime ut non ut dolores et. Animi non provident reprehenderit sunt labore commodi.', 'Aperiam et et ut aut quas. Voluptatem ut aut provident rerum. Natus laudantium inventore suscipit.\n\nVoluptatem et qui a omnis necessitatibus reprehenderit. Neque et nisi voluptatem et ducimus. Illo impedit cumque et ut nemo.', 1, 0, 0, 0, NULL, '2025-12-17 20:38:39', '2026-02-11 20:38:39', NULL), (23, 5, NULL, 17, 'Eum ea quasi quisquam veniam eaque qui.', 'Dolores dicta ut debitis qui eos.', 'Eum veritatis autem tenetur nisi est iure. Excepturi non ipsa vel qui qui voluptatem. Expedita dignissimos id pariatur soluta quas ut. Atque ea velit quis.\n\nPlaceat ipsum enim sit. Vel officia eum consequatur perspiciatis id nemo ipsa. Aut et veniam itaque qui voluptas.', 'Consequuntur fuga eum est. Accusantium est tempore omnis dolorem quibusdam et. Ducimus earum deleniti id natus cum labore.\n\nOptio voluptatum eum dolor praesentium voluptatum. Expedita debitis optio et. Non quia quod magnam quia qui ut culpa.', 0, 0, 0, 0, NULL, '2026-01-03 20:38:39', '2026-02-11 20:38:39', NULL), (24, 5, NULL, 11, 'Et quaerat non officia voluptas at ut.', 'Suscipit et cumque eum odio accusamus explicabo.', 'Voluptates minus excepturi omnis facere sint. Amet illo est ut quas veritatis modi. Id non odio doloremque. Iure ex quia enim itaque voluptatem rerum fugit.\n\nOmnis quo eos quo doloribus. Quis quo quis necessitatibus ipsa aliquid perferendis dignissimos repellendus. Eum est quos sunt. Minus accusamus voluptas iusto sunt maiores beatae rerum. Qui aut rerum et expedita ut autem.', 'Aut minima voluptatem corporis nihil ex explicabo. Est ipsa facilis velit placeat eaque non. Voluptatibus assumenda at in libero ratione neque illo quaerat. Sed repellendus magnam molestiae vero assumenda.\n\nOfficiis qui ut maiores a. Et et quis repellat veritatis. Consequatur cumque atque sint sed. Quia error sed aut quae placeat.', 0, 0, 0, 0, NULL, '2026-02-06 20:38:39', '2026-02-11 20:38:39', NULL), (25, 6, NULL, 5, 'Important: Course Guidelines', 'معلومات الامتحان النهائي', 'Asperiores qui iste iusto fuga optio molestias. Et ut tenetur eius deleniti quam. Repudiandae rem corrupti saepe aliquam et. Minima rem eos et ut adipisci voluptas nesciunt.\n\nId consectetur aut ut qui. Nihil repudiandae ut ab molestiae. Rerum tempora qui facere. Iusto omnis autem eveniet et amet.', 'Similique quae voluptatum tempore vel cumque nihil doloremque. Quod qui et pariatur impedit nihil ut. Repudiandae quam et consectetur voluptas consequatur.\n\nProvident placeat modi unde ut. Natus quisquam possimus voluptatibus dolorum. Et voluptas esse rerum sed voluptatem ut dicta. Voluptatibus et quam assumenda provident impedit maiores voluptatem quibusdam.', 1, 0, 0, 0, NULL, '2026-01-31 20:38:39', '2026-02-11 20:38:39', NULL), (26, 6, NULL, 5, 'Welcome to Web Development', 'معلومات الامتحان النهائي', 'Et minus incidunt vero alias aut. Et consequatur aut sit. Numquam soluta incidunt nostrum. Et ad veritatis est qui.\n\nEt quia blanditiis reiciendis quae. Corrupti officiis nulla consequatur. Sed cupiditate commodi ea minus eum voluptas sint. Sit tenetur illum tenetur delectus.', 'Omnis rerum officiis ea voluptatem rerum. Enim non atque quia dolorum possimus commodi quia nemo. Vel repudiandae incidunt in doloremque id dolorum voluptas. Quo atque laborum architecto omnis.\n\nQuasi adipisci et nobis officiis veritatis quae voluptatem ducimus. Ab maiores veritatis sit quia ipsam iste. Animi consectetur iusto molestiae. Nam commodi iusto deleniti voluptas nisi cumque quibusdam esse.', 1, 0, 0, 0, NULL, '2025-12-21 20:38:39', '2026-02-11 20:38:39', NULL), (27, 6, NULL, 28, 'Odit aut consequatur esse sed eaque quia.', 'Culpa similique eveniet id.', 'Earum non aliquam voluptatem dolore qui quod fugiat ipsa. Possimus autem facere iste ut aliquid. Non maxime dolorem iusto aliquam.\n\nConsequuntur reprehenderit et perspiciatis. Illo distinctio quis reprehenderit fugiat. Qui natus vero voluptate nostrum reprehenderit tempora.', 'Incidunt quis vel quo nesciunt illo enim odit. Vel quos ut occaecati error est unde dicta. Veniam consequatur quaerat et nihil nesciunt consequatur.\n\nRerum totam autem rerum illo culpa odio aut explicabo. Repellat voluptatem odio et quis ut expedita dolor quisquam. Unde eum aspernatur sint delectus ipsum vero cumque.', 0, 0, 0, 0, NULL, '2026-02-07 20:38:39', '2026-02-11 20:38:39', NULL), (28, 6, NULL, 7, 'Quia odio fuga expedita asperiores et blanditiis.', 'Est fugit tempora dolores aperiam rerum eum.', 'Et maiores sequi excepturi. Recusandae laudantium expedita est reprehenderit impedit quos delectus. Quia ratione modi qui soluta tempore.\n\nQuam et nihil eligendi assumenda et error. Aut molestiae ab voluptatem fuga.', 'Reiciendis quibusdam laboriosam dicta laboriosam facilis velit quos atque. Dolores quisquam dolorum quas ut unde. Eligendi odio ipsa eos rerum.\n\nQuibusdam nobis ut quam eum. Ducimus iste quis delectus expedita molestiae cupiditate qui. Et explicabo labore iste velit.', 0, 0, 0, 0, NULL, '2026-01-12 20:38:39', '2026-02-11 20:38:39', NULL), (29, 6, NULL, 28, 'Eos unde alias placeat et.', 'A iure aut odio optio.', 'A maxime numquam quaerat culpa fuga. Enim iusto aut accusantium aut suscipit ipsum. Aspernatur consequatur quam voluptatibus voluptatem at doloremque. A culpa saepe eligendi.\n\nEst necessitatibus odio accusamus nisi facilis eos. Magnam et autem totam quo. Nam et nihil cum facilis.', 'Illo voluptas neque iure adipisci iste sed ea. Dolorem accusantium libero cum. Velit rem qui voluptas laudantium doloribus assumenda. Necessitatibus autem aliquam rem sed ratione necessitatibus reiciendis.\n\nEt optio consectetur dolorem necessitatibus provident fuga nam. Nemo ullam ut veniam eligendi aut dolores. Perferendis corporis maiores eveniet. Ratione dolor nisi et fugit. Corporis id vitae nam architecto esse tempora.', 0, 0, 0, 0, NULL, '2026-01-24 20:38:39', '2026-02-11 20:38:39', NULL), (30, 7, NULL, 5, 'Final Exam Information', 'مرحباً بكم في تطوير الويب', 'Adipisci perferendis sit distinctio quia voluptatibus in exercitationem molestias. Sit consequatur dolor sint ut ex. Numquam rerum deserunt consequuntur sapiente a doloribus ratione eius.\n\nCommodi praesentium in voluptatem a. Odio esse est odit reprehenderit quam nobis voluptas. Modi beatae fugit et praesentium a illum et voluptatibus.', 'Eaque aut vel voluptas labore quis ut esse ea. Consequatur omnis laborum ducimus tenetur. Magni doloremque nisi nulla dicta. Fugiat nostrum eligendi deleniti excepturi.\n\nRerum et natus est delectus facilis. Sit eveniet et voluptate autem placeat dolorem laudantium commodi. Consequatur et harum exercitationem omnis. Itaque iure enim et vitae est vitae voluptate. Sit quos placeat ab ipsam modi.', 1, 0, 0, 0, NULL, '2026-01-08 20:38:39', '2026-02-11 20:38:39', NULL), (31, 7, NULL, 33, 'Id culpa aspernatur nobis nostrum.', 'Et atque non ut corrupti laudantium nisi.', 'Et quibusdam dolor laboriosam. Et autem voluptatem earum vel. Vel corporis alias quibusdam et.\n\nHic pariatur impedit quisquam accusamus. Commodi vel tenetur nulla repellat dolores id a. Quia in impedit illo molestias accusantium dolore sit et. Dignissimos quaerat odio accusantium perspiciatis.', 'Enim atque exercitationem consequuntur occaecati qui explicabo labore illo. Facilis ipsam aperiam dignissimos molestiae aut voluptatibus. Et aut dicta iusto.\n\nMinima porro et explicabo. Rerum in et voluptates rem. Sapiente assumenda autem expedita repellat itaque. Et quos atque labore harum. Inventore ut incidunt odio quis enim quo.', 0, 0, 0, 0, NULL, '2026-02-09 20:38:39', '2026-02-11 20:38:39', NULL), (32, 7, NULL, 20, 'Pariatur aut hic beatae esse fugiat.', 'Illo deleniti et dolorem.', 'Sunt qui facere quia illo facere libero. Quam quia consequuntur et impedit voluptatem.\n\nIn aspernatur nobis illum. In quis vero dolores. Sed est qui quo veritatis dolorum fuga temporibus iure. Illum laborum sed aliquam autem recusandae.', 'Enim eos error voluptatem eum omnis soluta nihil. Earum earum recusandae nulla dolorem et ea. Blanditiis nihil soluta enim illum quo. Quidem vitae amet est deserunt modi odit aut.\n\nTenetur ut possimus soluta earum ut. Perspiciatis aperiam enim voluptates provident sit numquam et. Veniam sunt magni voluptatem tempore. Facere deserunt dolor sequi totam doloremque molestiae nisi.', 0, 0, 0, 0, NULL, '2026-01-30 20:38:39', '2026-02-11 20:38:39', NULL), (33, 7, NULL, 28, 'Autem voluptatem et ratione.', 'Minus inventore neque nihil at magnam rerum.', 'Officiis perspiciatis a facere sint. Laboriosam repellat ipsum hic. Aut consequatur pariatur eius doloremque. Libero magnam magni repellat quisquam omnis nihil. Eos voluptate tempore facilis ut sit.\n\nIpsa animi perspiciatis fuga assumenda unde ex. Officiis ea numquam quia consequuntur. Rerum et repudiandae repudiandae a.', 'Sequi fugiat est rerum suscipit maiores rem. Occaecati sed consequatur architecto nostrum excepturi. Architecto dignissimos voluptatem sed voluptatum natus deserunt dicta quod. Dolorem ut inventore voluptatibus dolor nisi amet nihil sit.\n\nNemo eius delectus expedita cum tenetur et. Rerum tempore velit culpa eius. Est soluta libero doloremque reiciendis consequatur dolorem incidunt in.', 0, 0, 0, 0, NULL, '2026-02-02 20:38:39', '2026-02-11 20:38:39', NULL), (34, 7, NULL, 31, 'Soluta repellat nihil unde quis.', 'Sit doloremque dolorem praesentium nihil esse.', 'Officia earum aut rerum molestiae illo dicta. Necessitatibus officiis vel repellat aperiam. Error sed enim qui. Aut soluta aperiam similique velit vitae eaque sequi.\n\nAccusantium illo reiciendis quis architecto at. Ut dicta sunt repudiandae quo. Mollitia aliquid eaque est possimus commodi ea qui. Explicabo eos nostrum in est aut.', 'Sed vero incidunt molestiae error corporis rerum. Recusandae deserunt rerum est veritatis fugiat. Facere molestiae et incidunt totam asperiores unde. Esse cum molestiae adipisci cumque. Deleniti distinctio unde eos reprehenderit earum.\n\nSed voluptates voluptates in eveniet non. Fugit tempora laudantium aut et minus et maxime. Aut aliquam et enim aut qui.', 0, 0, 0, 0, NULL, '2025-12-30 20:38:39', '2026-02-11 20:38:39', NULL), (35, 7, NULL, 2, 'Repellat aperiam neque sit.', 'Voluptate aut quis libero voluptatem consequuntur.', 'Voluptatem maxime rem maxime repudiandae ut ad. Reiciendis ea in ipsam non animi. Laboriosam est consequatur ipsum fugit.\n\nDelectus quia ut sint mollitia sequi aut quod corrupti. Voluptatem ipsa debitis tempora voluptas nostrum. Et alias est illo quos.', 'Aspernatur aspernatur rerum vitae omnis non sapiente facilis. Amet rem perspiciatis veritatis hic qui sint provident. Non cupiditate cupiditate enim voluptates recusandae quis. Odit nesciunt laboriosam eum qui qui quis.\n\nBlanditiis dicta quia autem vel accusamus quos. Debitis voluptatem eius molestiae inventore doloremque at dolores omnis. Enim vel sequi ad iure et. Sint ipsa quaerat et doloremque ipsam sapiente quo nostrum.', 0, 0, 0, 0, NULL, '2026-01-29 20:38:39', '2026-02-11 20:38:39', NULL), (36, 8, NULL, 6, 'Schedule Update', 'إعلان امتحان منتصف الفصل', 'Laboriosam deserunt enim ipsam a dignissimos debitis. Non sit ullam neque nihil dolorem doloribus. Facilis omnis repudiandae consequatur eligendi.\n\nEst quas eligendi reprehenderit nemo non non. Molestiae laborum aut tempore nesciunt. Vel ex beatae laudantium provident nihil a eligendi.', 'Ipsam quia voluptatem et quae. Magni sit aut voluptas magni qui. Nihil ea consequatur itaque excepturi voluptatem.\n\nEt quia enim vel rerum. Iusto et hic molestiae voluptas. Delectus sint corporis eum optio dolorem ex.', 1, 0, 0, 0, NULL, '2026-01-02 20:38:39', '2026-02-11 20:38:39', NULL), (37, 8, NULL, 6, 'Welcome to Database Systems', 'تحديث الجدول الزمني', 'Dolor quia consequuntur similique doloribus non commodi. Deserunt architecto suscipit similique a eum. Id quis ut rem dolores voluptatem est saepe. Sint voluptatem eaque aut voluptas labore.\n\nAtque non et eos non voluptas. Minus et quis eaque et quod est. Consequuntur quo in eum. Est fuga suscipit eos vel dolores.', 'Dolorem veritatis dolor exercitationem velit repudiandae omnis est. Ut in et ullam suscipit. Similique quibusdam consequuntur enim odit. Perspiciatis et consectetur aut atque quis.\n\nEa facere sint nam magni. Maxime ut porro consequuntur reprehenderit voluptatem in. Deleniti iste quia atque consequatur.', 1, 0, 0, 0, NULL, '2026-01-10 20:38:39', '2026-02-11 20:38:39', NULL), (38, 8, NULL, 6, 'Schedule Update', 'معلومات الامتحان النهائي', 'Eum dolorem inventore est labore repellat deleniti vero. Et corrupti ducimus voluptas eveniet est aut officiis. Delectus et excepturi esse quam consequuntur ducimus. Odio in incidunt quae nihil. Voluptatem et quae distinctio assumenda.\n\nRerum saepe totam facilis. Doloremque voluptates tempora esse cumque et reiciendis quaerat. Nam aut repellat et voluptate ut.', 'Maxime nobis qui molestiae quidem. Non est neque distinctio ea. Velit est omnis odit et rerum. Assumenda minima tempora voluptatem consectetur.\n\nLabore modi eligendi doloribus enim tenetur sunt labore aut. Delectus sunt ratione provident eos accusamus exercitationem. In dicta tempora qui natus velit quo quia. Similique corrupti sed ut fuga ut.', 1, 0, 0, 0, NULL, '2026-01-09 20:38:39', '2026-02-11 20:38:39', NULL), (39, 8, NULL, 13, 'Facere explicabo sequi qui.', 'Accusantium natus officiis similique.', 'Voluptas vitae est perferendis dignissimos dolores libero. Est cumque placeat veniam est alias quibusdam. Quasi voluptates ea et libero explicabo id sit. Est hic aliquid impedit sequi earum dolore ut.\n\nOdit commodi molestiae hic assumenda. Quia cumque nam facilis. Minus delectus eligendi facilis eum.', 'Accusantium labore enim vero quia qui aperiam. Vitae suscipit amet magnam quis. Qui consequatur deleniti error perferendis.\n\nConsequatur et voluptatum exercitationem voluptatibus neque provident. Nihil iste expedita voluptatem quo eum et voluptatem. Aperiam voluptas quod qui delectus.', 0, 0, 0, 0, NULL, '2026-02-06 20:38:39', '2026-02-11 20:38:39', NULL), (40, 8, NULL, 25, 'Qui et aut et consequatur mollitia.', 'Molestias dolor possimus perspiciatis doloribus illum.', 'Dolor laudantium ipsa eos veniam assumenda earum molestiae suscipit. Expedita qui assumenda ut doloremque architecto possimus labore. Labore doloribus consequatur praesentium natus fugiat magnam voluptate assumenda. Rem aut laboriosam perspiciatis consequatur qui qui autem.\n\nEt ut nihil quaerat consequatur voluptatem voluptatem fugit non. Fugiat laborum autem harum animi. Exercitationem modi nesciunt dolore perferendis.', 'Quisquam quaerat laborum quia animi delectus quasi dignissimos accusamus. Iure eos et dolores est alias omnis. Architecto exercitationem neque ut eaque aut.\n\nEa eligendi quas commodi tempore est. Quod enim ea quo at quas consequuntur aspernatur. Aut aut doloribus voluptatem quae dolorem sequi eum.', 0, 0, 0, 0, NULL, '2026-01-11 20:38:39', '2026-02-11 20:38:39', NULL), (41, 8, NULL, 2, 'Consequatur voluptates commodi eveniet commodi eos quia.', 'Aliquid deserunt accusamus ducimus quod.', 'A voluptates similique quo a hic. Soluta consequatur repellat consequatur ea. Aliquam inventore quia repellendus doloribus eveniet vel enim. Iure quam assumenda non.\n\nOfficia dolorem in voluptates odit dolorem repellat. Iure enim ut voluptates at atque. Ducimus iusto quasi voluptatem minima qui.', 'Molestiae recusandae assumenda et. Quo maxime ipsam est autem.\n\nQuaerat corrupti rerum laborum ut et sint a et. Quam officia voluptates sit consectetur. Et vero sed voluptatum harum reprehenderit.', 0, 0, 0, 0, NULL, '2026-01-15 20:38:39', '2026-02-11 20:38:39', NULL), (42, 8, NULL, 31, 'Occaecati quis dolores ipsa voluptatem.', 'Nulla est magni error ut voluptates suscipit.', 'Ducimus sunt facilis iusto aut. Cumque ipsam assumenda inventore odio ab et. Id dolorum id rerum labore. Unde ex facere accusantium aut.\n\nCorporis error omnis sint quia necessitatibus dicta adipisci. Tempora corporis sed incidunt dolorum.', 'Impedit qui exercitationem impedit nihil. Eum ipsa dolorum hic rerum est. Illum sed totam possimus sunt vel.\n\nAutem et modi rerum saepe. Quia natus unde ad qui eius voluptate quae. Fuga incidunt cupiditate aut voluptatem nihil. Quaerat ut non qui pariatur unde voluptas blanditiis saepe.', 0, 0, 0, 0, NULL, '2026-01-12 20:38:39', '2026-02-11 20:38:39', NULL), (43, 8, NULL, 17, 'Ut labore veniam amet et.', 'Rerum libero sed magnam.', 'Necessitatibus tempore harum aperiam pariatur quod eaque aspernatur autem. Cumque nisi veritatis iusto a saepe eum. Ratione deserunt qui quia rerum. Nesciunt vel animi consequatur voluptatibus. Sed dolore eos hic deleniti rem perspiciatis ad.\n\nEt sint odio commodi doloribus vel non. Qui quo inventore tempore omnis aut ullam corrupti.', 'Accusantium nostrum quibusdam perspiciatis dolores. Fugiat officiis aut necessitatibus a nisi labore qui. Ut dignissimos ut consequatur omnis nulla dolores.\n\nAsperiores reprehenderit cum quam numquam soluta sequi consequatur sequi. Enim perferendis id sunt quia. Eaque sunt dolores dignissimos est nobis minima in. Et magnam velit saepe minima enim veritatis.', 0, 0, 0, 0, NULL, '2026-01-26 20:38:39', '2026-02-11 20:38:39', NULL), (44, 9, NULL, 7, 'Welcome to Circuit Analysis', 'إعلان امتحان منتصف الفصل', 'Sunt aut minima eveniet optio id error. Dignissimos ut sunt aliquam explicabo nisi a. Modi inventore asperiores neque explicabo eos cupiditate. Maiores doloremque est quidem doloribus officia nulla. Ipsum alias perferendis beatae.\n\nSunt optio ullam assumenda nemo quam et ullam. Cumque facere ullam enim quis ut. Cumque omnis voluptas quo voluptas ratione magni beatae. Ipsam velit a recusandae error eum perferendis sapiente.', 'Odio cumque blanditiis voluptatum et dolor. Minus dolores sequi minima non ducimus. Voluptates alias et ipsum eos quod eos. Ipsum soluta possimus soluta quisquam.\n\nQui quia ex ex ea quo natus autem voluptas. Enim recusandae neque eos veniam. Illum vero sunt doloribus velit nemo aut eum dolorem. Dicta rem consequatur quibusdam eaque itaque molestiae impedit et. Totam asperiores deleniti ut qui atque omnis et.', 1, 0, 0, 0, NULL, '2026-01-01 20:38:39', '2026-02-11 20:38:39', NULL), (45, 9, NULL, 7, 'Midterm Announcement', 'معلومات الامتحان النهائي', 'Est natus est voluptates numquam sunt eos velit. Veritatis aut ratione aut eligendi qui incidunt incidunt illum. Distinctio amet aliquid qui asperiores et. Molestiae voluptas vel sit nisi ullam eius. Exercitationem quo consequuntur neque nostrum sed omnis.\n\nUt nihil ullam iure quisquam. Necessitatibus optio hic ut. Ut eveniet quas autem consequuntur. Cum maiores in odio et rerum vel nobis.', 'Odio molestiae ut autem earum facere dolorem. Dicta culpa ex natus dicta et minima.\n\nQui autem cum et. Debitis soluta soluta dolor omnis. Nihil vel veritatis consequatur. Sit tenetur reprehenderit ut suscipit voluptas quia.', 1, 0, 0, 0, NULL, '2026-01-09 20:38:39', '2026-02-11 20:38:39', NULL), (46, 9, NULL, 7, 'Welcome to Circuit Analysis', 'مرحباً بكم في تحليل الدوائر', 'Accusantium nihil nulla qui doloremque unde quasi molestiae quis. Minima veritatis qui doloribus omnis. Itaque tempora ullam labore ut reprehenderit.\n\nVoluptatem vero aut cumque. Assumenda repellat ea ut sunt enim voluptatem reprehenderit. Maxime veniam porro quod dolores.', 'Fugiat magni est voluptates placeat unde. Atque quo nisi eos vel non culpa quibusdam. Voluptate ullam aut beatae minus tempore.\n\nAutem et vel debitis voluptatibus. Eligendi voluptatem molestiae debitis ipsum aut recusandae hic dolores. Maiores eos ipsam aliquid qui natus modi aut quia.', 1, 0, 0, 0, NULL, '2026-01-02 20:38:39', '2026-02-11 20:38:39', NULL), (47, 9, NULL, 2, 'Voluptatibus eos fugit possimus sint est vitae.', 'Ut iste quia odit.', 'Quis ullam doloribus inventore labore. Et impedit nemo consectetur excepturi qui sunt aut numquam.\n\nAliquam nemo recusandae repellat corporis et. Facilis aut sint ut debitis et explicabo.', 'Et ut corrupti eaque et sint eos. Inventore id saepe error commodi non numquam minima.\n\nEarum ut repellendus quidem cupiditate eveniet porro. Fuga provident nostrum eos necessitatibus aliquid. Tempore impedit voluptatibus ipsa deserunt soluta et. Ipsum ut accusantium accusantium deleniti vel non vel.', 0, 0, 0, 0, NULL, '2026-01-13 20:38:39', '2026-02-11 20:38:39', NULL), (48, 9, NULL, 8, 'Voluptas et maiores quis.', 'Eos officia nemo explicabo neque illum.', 'In voluptatem eveniet ut illum odio deserunt architecto. Non impedit voluptas consequatur debitis. Nesciunt autem distinctio provident libero sed et vero. Et maiores labore dolorem officia modi. Sit saepe pariatur amet.\n\nMagni corporis quis sed id. Molestias ullam omnis accusamus veniam porro delectus est. Accusamus at sequi dolores et temporibus. Laudantium quia repellendus ad fugit sed.', 'Ratione laborum est et distinctio. Officiis non dolorum culpa tenetur. Et molestias quos repellat voluptas soluta id laudantium. Est enim voluptas repellendus sit sit dolores sunt officiis.\n\nQui sit aliquid asperiores veniam pariatur sunt. Quibusdam veritatis adipisci et illum et facere cumque.', 0, 0, 0, 0, NULL, '2026-01-13 20:38:39', '2026-02-11 20:38:39', NULL), (49, 9, NULL, 14, 'Voluptatem praesentium est aperiam accusamus.', 'Et inventore dignissimos aut quia deleniti eligendi.', 'Sunt aperiam voluptates sed assumenda illo error. Libero laborum delectus eum libero possimus. Aut dicta consequatur enim officiis vel eum aut. Suscipit eos atque est in fuga labore facilis.\n\nCupiditate non consequatur non. Autem voluptatem doloremque atque. Praesentium dolorem aut non eligendi voluptas alias et.', 'Delectus non laudantium voluptate maiores doloremque ad quia. Quam consequuntur eaque cupiditate deserunt suscipit eligendi voluptas. Assumenda optio culpa sunt vel. Dolores et temporibus et ullam in optio error.\n\nQuaerat delectus hic recusandae pariatur vero et nobis. Quasi expedita vel et doloremque fugiat. Voluptatem dolor quasi qui voluptatum pariatur.', 0, 0, 0, 0, NULL, '2026-01-14 20:38:39', '2026-02-11 20:38:39', NULL), (50, 9, NULL, 9, 'Debitis odio rerum consequatur blanditiis dolores.', 'Qui ut corporis minima quia sit.', 'Beatae maxime et consectetur quas illo nobis reprehenderit. In eos optio dolorem exercitationem est sunt occaecati. Nesciunt est sed commodi facere alias.\n\nEa commodi tempora consectetur. Corrupti reiciendis qui sunt et delectus voluptates. Asperiores fuga exercitationem tenetur neque ullam sunt enim.', 'Enim aliquid in quia in illo et non. Fugit praesentium rerum voluptatem. Aut accusantium illum esse aliquam ex reprehenderit hic.\n\nNam quia eius voluptate quod quisquam ea eligendi. Vitae est et tempora enim non dolorem ut. Totam odit tempora dolores temporibus iusto.', 0, 0, 0, 0, NULL, '2026-02-03 20:38:39', '2026-02-11 20:38:39', NULL), (51, 10, NULL, 7, 'Schedule Update', 'إعلان امتحان منتصف الفصل', 'Vel omnis vel in. Sed amet accusamus qui repudiandae ut cumque voluptates. Id quisquam voluptates ullam nulla.\n\nAmet ut quia corrupti numquam eveniet ad sunt. Repellat nihil sed voluptatem sit amet. Perferendis laboriosam mollitia voluptatum cumque blanditiis eius odio.', 'Doloribus dolore nesciunt id autem voluptatem sapiente est. Nemo laborum ipsa commodi ut. Sit similique voluptatum blanditiis omnis molestiae. Quia officiis assumenda tempore eum porro deserunt eos.\n\nRatione sed voluptatem cumque perspiciatis. Et natus aliquid labore aut eum optio quibusdam. Ut dolore sed voluptatem et est natus neque. Nam optio consequatur totam neque nihil.', 1, 0, 0, 0, NULL, '2026-01-27 20:38:39', '2026-02-11 20:38:39', NULL), (52, 10, NULL, 2, 'Laborum exercitationem quo molestiae dignissimos exercitationem.', 'Soluta commodi distinctio inventore harum.', 'Quod facere pariatur quae alias quas. Et iusto amet ut qui architecto et in. Nesciunt quia porro magnam voluptas qui sapiente expedita. Nihil iste asperiores atque velit ipsa.\n\nNihil dolore aliquam ut vero minus. Eum culpa numquam possimus dolores molestias. Recusandae nisi explicabo est enim vel hic qui.', 'Quia qui tempora esse cum est molestiae. Accusamus sed illo quasi eos. Modi numquam doloremque sed voluptas nam velit quo.\n\nLaboriosam occaecati animi ut rem necessitatibus veniam quaerat. Asperiores autem quo et consequatur. Ut dolore nam id eligendi odio maiores ipsum nam.', 0, 0, 0, 0, NULL, '2026-01-02 20:38:39', '2026-02-11 20:38:39', NULL), (53, 10, NULL, 8, 'Quaerat explicabo tempore neque a quo et.', 'Illo quia quidem inventore.', 'Quis totam et alias commodi accusantium ex. Architecto at ipsa distinctio voluptates adipisci tenetur consequatur. Ad quia praesentium voluptatem. Ea sint a voluptas ut quae.\n\nDeleniti rem sunt quibusdam harum blanditiis. Fugit in commodi iste tempora. Aut ut eos animi in numquam. Quo officia numquam laborum earum esse eos rerum voluptate.', 'Adipisci saepe occaecati eum dolorem. Qui sint suscipit sapiente quidem ut consectetur tempora. Quia quam occaecati voluptatum quis dolor. Accusantium magni illo ipsam facere.\n\nQuo aliquid ex officia. Officiis qui est illum corrupti illo iure. Soluta omnis molestiae dolore veniam.', 0, 0, 0, 0, NULL, '2026-01-22 20:38:39', '2026-02-11 20:38:39', NULL), (54, 10, NULL, 23, 'Assumenda voluptatum qui esse libero quam expedita.', 'Aperiam quis qui consequatur et.', 'Sunt hic facere minima officiis sit. Asperiores error tenetur dolores nesciunt et et. Voluptatem vitae hic deserunt ut.\n\nOccaecati ut dolor velit non natus placeat. Reiciendis officiis fugiat accusamus recusandae. Fuga eum explicabo facere est et corporis.', 'At enim eligendi eum corporis. Qui vitae inventore architecto eveniet qui nihil. Sit maxime enim voluptatem architecto.\n\nReprehenderit iste ut natus voluptate rerum sequi a voluptatem. Nobis quia est repudiandae aut est quasi nihil. Eius saepe debitis magni.', 0, 0, 0, 0, NULL, '2026-01-25 20:38:39', '2026-02-11 20:38:39', NULL), (55, 10, NULL, 6, 'Quo earum est accusantium maxime esse.', 'Sit qui et non nesciunt iure.', 'Velit sit quas voluptas qui. Omnis consequatur eius alias ex blanditiis quia. Eligendi soluta id nobis voluptatum animi eaque temporibus sed.\n\nPerspiciatis quibusdam aut consequatur modi doloribus aliquam. Voluptatem sit sed inventore est. Mollitia commodi voluptatem blanditiis ducimus voluptas provident distinctio.', 'Asperiores quae suscipit at id nesciunt pariatur quia. Aliquam minus autem voluptates libero consequuntur qui repellendus. Magni aut rerum dolor sit velit.\n\nOmnis iusto sunt suscipit non reiciendis saepe optio. Necessitatibus maiores assumenda accusantium reiciendis aperiam. Eum aut corporis laborum dignissimos aut.', 0, 0, 0, 0, NULL, '2026-01-23 20:38:39', '2026-02-11 20:38:39', NULL), (56, 11, NULL, 8, 'Important: Course Guidelines', 'إعلان امتحان منتصف الفصل', 'Inventore optio a facere vitae incidunt. Ut qui ea inventore eius. Quasi eligendi omnis nihil repellat.\n\nOmnis ipsam sint rem corporis fugit. Accusamus omnis iste repudiandae laboriosam accusantium. Nostrum sunt atque qui asperiores.', 'Facilis ab et in praesentium. Quaerat nesciunt sint enim velit cupiditate. Sint sint eveniet rerum nesciunt quibusdam vel. Adipisci rerum eveniet impedit ut ex qui.\n\nUt sit quidem ipsa ut voluptatibus. Numquam et cupiditate qui accusamus et. Atque id rem soluta ipsa.', 1, 0, 0, 0, NULL, '2026-01-02 20:38:39', '2026-02-11 20:38:39', NULL), (57, 11, NULL, 6, 'Facere saepe recusandae asperiores aliquid amet.', 'Similique possimus qui quia et quia molestias.', 'Consequatur voluptatibus impedit consequatur cum eum aut. Vel nostrum reiciendis delectus ut laboriosam voluptatem quis. Sint non asperiores veniam pariatur nobis blanditiis rerum. Eos accusantium voluptas cupiditate consequatur.\n\nMolestiae sit quis quam repellat. Qui quia aliquid porro. Iusto aliquam ad rerum et veniam modi. Enim quaerat eos provident enim.', 'Et eius nesciunt numquam veniam dolores. Nihil labore accusamus dignissimos officiis. Rem a in enim. Minus modi illum quia qui aut neque.\n\nEt quis amet sed vero nihil non. Est omnis at porro molestias quisquam quisquam consequatur. Sed quidem laudantium tenetur praesentium odio enim at velit. Consequatur harum sint debitis sit doloribus odit. Doloribus vero voluptatem aut animi.', 0, 0, 0, 0, NULL, '2026-01-24 20:38:39', '2026-02-11 20:38:39', NULL), (58, 11, NULL, 6, 'Eius nulla omnis numquam alias quae a.', 'Id numquam est qui vero quisquam.', 'Soluta voluptatem ut amet impedit ipsa at est. Saepe consequatur suscipit dolorum voluptas sint rerum. Illum cupiditate voluptates rerum rem et ut maxime.\n\nRecusandae ducimus quasi reprehenderit omnis tempore. Dolorem laborum necessitatibus quia ratione culpa dolore. Quaerat qui consectetur saepe aut dignissimos. Laboriosam corporis mollitia ut voluptas non. Ullam minus deserunt earum maxime deserunt a.', 'Neque quis porro eaque dolor blanditiis. Incidunt est qui ea repellendus sunt illo maxime. Aut quod mollitia perspiciatis tempore non sit temporibus.\n\nSapiente accusamus tempore minus numquam porro a distinctio voluptatibus. Quia aliquid ab deserunt eaque odio numquam. Neque eligendi vel praesentium aut esse. Quia doloribus voluptatum magnam voluptatem non rerum.', 0, 0, 0, 0, NULL, '2026-02-02 20:38:39', '2026-02-11 20:38:39', NULL), (59, 12, NULL, 8, 'Schedule Update', 'هام: إرشادات المقرر', 'Porro molestiae tenetur ea officia soluta quae. Quia culpa ullam ipsum non ratione distinctio ea.\n\nNumquam dolore eveniet repellat aliquid assumenda. Est placeat necessitatibus voluptatem labore autem. Quos aut consequatur et soluta sapiente consequatur et. Explicabo quis animi fugit reprehenderit distinctio qui quis. Accusamus mollitia amet qui repellendus voluptatem nobis.', 'Dolore dolorem id dignissimos atque deserunt corporis. Voluptas sequi voluptatem eligendi eligendi officia vel. Illum est molestiae ipsa quidem.\n\nDignissimos est doloremque distinctio tempora ab provident. Quod vel et sunt dolorem officia enim cum.', 1, 0, 0, 0, NULL, '2025-12-13 20:38:39', '2026-02-11 20:38:39', NULL), (60, 12, NULL, 8, 'Welcome to Managerial Accounting', 'مرحباً بكم في محاسبة إدارية', 'Non hic eveniet natus accusamus voluptates reprehenderit. Atque illum est et et eos mollitia voluptate. Est inventore nulla totam consequuntur. Ex consequatur repellendus sit nobis labore vitae nam ullam.\n\nSed ea consequatur sunt cumque rerum. Omnis quas veritatis sed velit et reprehenderit fugit error. Blanditiis quibusdam vel sint ipsa laboriosam aut. Qui omnis ea illum vel dolore voluptatem.', 'Amet et maiores magnam adipisci laboriosam. Tempora necessitatibus placeat et repudiandae in sequi qui odit. Et et fugit non reiciendis perspiciatis ut iusto.\n\nError occaecati quo ea eaque error labore. Qui nulla facere ut doloribus occaecati aut eum.', 1, 0, 0, 0, NULL, '2026-01-27 20:38:39', '2026-02-11 20:38:39', NULL), (61, 12, NULL, 22, 'Autem et porro repudiandae.', 'Et facilis architecto ut.', 'Qui optio voluptate omnis ut ipsam voluptatem veritatis. Ipsum voluptates quas perferendis. Laborum aut quaerat sit aliquid beatae.\n\nTemporibus est iste assumenda. Expedita voluptatum hic quae quas cum occaecati voluptas rem. Sit qui dolor rerum porro exercitationem aut omnis rem. Corporis rerum velit sed quis exercitationem in sed.', 'Officiis ullam in perferendis dicta. Earum necessitatibus cupiditate adipisci quam minus. Mollitia quia rem consectetur voluptatem ex quisquam non. Est dolorum voluptatem at nesciunt voluptatibus eaque.\n\nDebitis dignissimos sapiente distinctio. Odio libero harum et. Tenetur mollitia omnis quo.', 0, 0, 0, 0, NULL, '2026-01-24 20:38:39', '2026-02-11 20:38:39', NULL), (62, 12, NULL, 34, 'Nostrum eum explicabo ipsam nostrum.', 'Assumenda quo in quia asperiores eos vitae.', 'Est ipsa aperiam voluptas quidem ratione delectus quo a. Animi molestiae distinctio repudiandae non id nisi pariatur. Nulla dolorum harum adipisci unde ad.\n\nLaboriosam porro quisquam non. Sit est aut mollitia. Qui inventore ut quia voluptatum omnis.', 'Alias quidem illum assumenda. Expedita voluptatem magni enim fugit quod. Ut necessitatibus et consequatur eos veritatis. Nostrum sunt voluptatum voluptate deserunt.\n\nExpedita est et veritatis et ipsa nesciunt. Quia et quidem sint officiis. Ut vel aut eveniet enim.', 0, 0, 0, 0, NULL, '2026-01-14 20:38:39', '2026-02-11 20:38:39', NULL); INSERT INTO `discussions` (`id`, `course_offering_id`, `parent_id`, `author_id`, `title_en`, `title_ar`, `content_en`, `content_ar`, `is_pinned`, `is_locked`, `view_count`, `reply_count`, `last_reply_at`, `created_at`, `updated_at`, `deleted_at`) VALUES (63, 12, NULL, 7, 'Reprehenderit neque et dolores enim est.', 'Quo quo ut dolores.', 'Vitae dolor nisi totam impedit dolor dolores voluptatem. Aut ex omnis quis iste. Sequi mollitia numquam amet.\n\nQuo eveniet sit quibusdam iste non molestiae quo. Occaecati quibusdam quis ratione cupiditate totam impedit optio. Libero eaque dolores eos tenetur deleniti doloribus.', 'Saepe ad voluptas qui perferendis officia id. Voluptatem eum molestiae fugiat voluptate reiciendis. Debitis corporis dolore voluptas aspernatur nulla. Blanditiis voluptatem minima sunt pariatur.\n\nA blanditiis rem ut est velit. Eveniet cumque porro est saepe omnis. Culpa quaerat quod aliquam hic voluptatem et. Repudiandae animi accusamus modi omnis neque cupiditate inventore rerum.', 0, 0, 0, 0, NULL, '2026-01-08 20:38:39', '2026-02-11 20:38:39', NULL), (64, 12, NULL, 20, 'Asperiores consequatur aut illo.', 'Sequi consequuntur blanditiis beatae rerum cumque saepe explicabo.', 'Porro ex accusamus qui nihil. Iusto sapiente ut voluptatem consequatur occaecati quo deserunt quidem. Labore id in iste dignissimos sunt voluptas.\n\nQui repellat natus temporibus et. Nemo sunt assumenda quis non id nihil. Officia repellat in commodi aut est tempore doloremque.', 'Rerum dolores fuga sapiente adipisci. Quidem aliquam quas ut neque et. Quia architecto optio itaque. Sunt aut dolorem eveniet dolores laudantium autem modi officia.\n\nCum possimus enim sequi labore ut expedita aliquid. Et consequatur rerum id et alias omnis. Eveniet quis cupiditate perspiciatis a quis similique. Qui facere distinctio nihil.', 0, 0, 0, 0, NULL, '2026-01-15 20:38:39', '2026-02-11 20:38:39', NULL); -- -------------------------------------------------------- -- -- Table structure for table `enrollments` -- CREATE TABLE `enrollments` ( `id` bigint(20) UNSIGNED NOT NULL, `student_id` bigint(20) UNSIGNED NOT NULL, `course_offering_id` bigint(20) UNSIGNED NOT NULL, `status` enum('pending','approved','dropped','completed') NOT NULL DEFAULT 'pending', `completed_activities` int(10) UNSIGNED NOT NULL DEFAULT 0, `total_activities` int(10) UNSIGNED NOT NULL DEFAULT 0, `enrolled_at` timestamp NOT NULL DEFAULT current_timestamp(), `dropped_at` timestamp NULL DEFAULT NULL, `admin_notes` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `completed_activities_count` int(10) UNSIGNED NOT NULL DEFAULT 0, `total_activities_count` int(10) UNSIGNED NOT NULL DEFAULT 0, `progress_percentage` decimal(5,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `enrollments` -- INSERT INTO `enrollments` (`id`, `student_id`, `course_offering_id`, `status`, `completed_activities`, `total_activities`, `enrolled_at`, `dropped_at`, `admin_notes`, `created_at`, `updated_at`, `deleted_at`, `completed_activities_count`, `total_activities_count`, `progress_percentage`) VALUES (1, 10, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (2, 11, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (3, 12, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (4, 13, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (5, 14, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (6, 16, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (7, 17, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (8, 18, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (9, 19, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (10, 20, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (11, 21, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (12, 22, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (13, 23, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (14, 24, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (15, 25, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (16, 26, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (17, 27, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (18, 28, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (19, 29, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (20, 31, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (21, 32, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (22, 33, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (23, 34, 1, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (24, 10, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (25, 11, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (26, 12, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (27, 13, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (28, 14, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (29, 15, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (30, 16, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (31, 17, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (32, 18, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (33, 19, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (34, 20, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (35, 22, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (36, 23, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (37, 24, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (38, 25, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (39, 26, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (40, 27, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (41, 29, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (42, 31, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (43, 32, 2, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (44, 10, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (45, 11, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (46, 12, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (47, 13, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (48, 14, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (49, 15, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (50, 16, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (51, 17, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (52, 18, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (53, 19, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (54, 20, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (55, 21, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (56, 22, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (57, 23, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (58, 25, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (59, 26, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (60, 27, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (61, 28, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (62, 29, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (63, 30, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (64, 31, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (65, 33, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (66, 34, 3, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (67, 10, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (68, 11, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (69, 12, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (70, 13, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (71, 14, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (72, 15, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (73, 17, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (74, 18, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (75, 19, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (76, 20, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (77, 21, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (78, 22, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (79, 24, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (80, 25, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (81, 26, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (82, 27, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (83, 29, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (84, 30, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (85, 31, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (86, 32, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (87, 33, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (88, 34, 4, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (89, 10, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (90, 11, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (91, 13, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (92, 14, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (93, 18, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (94, 19, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (95, 20, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (96, 22, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (97, 23, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (98, 24, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (99, 26, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (100, 27, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (101, 29, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL, 0, 0, 0.00), (102, 30, 5, 'approved', 0, 0, '2026-02-11 20:38:23', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (103, 31, 5, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (104, 32, 5, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (105, 33, 5, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (106, 34, 5, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (107, 10, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (108, 13, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (109, 14, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (110, 16, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (111, 19, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (112, 20, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (113, 21, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (114, 22, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (115, 23, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (116, 24, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (117, 25, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (118, 27, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (119, 28, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (120, 29, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (121, 30, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (122, 33, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (123, 34, 6, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (124, 10, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (125, 13, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (126, 14, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (127, 15, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (128, 16, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (129, 17, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (130, 18, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (131, 19, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (132, 20, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (133, 21, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (134, 23, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (135, 24, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (136, 25, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (137, 26, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (138, 27, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (139, 28, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (140, 29, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (141, 30, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (142, 32, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (143, 33, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (144, 34, 7, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (145, 10, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (146, 11, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (147, 12, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (148, 13, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (149, 15, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (150, 18, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (151, 19, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (152, 20, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (153, 21, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (154, 22, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (155, 24, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (156, 25, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (157, 26, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (158, 27, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (159, 28, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (160, 29, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (161, 30, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (162, 32, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (163, 33, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (164, 34, 8, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (165, 10, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (166, 12, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (167, 14, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (168, 15, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (169, 16, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (170, 18, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (171, 20, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (172, 21, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (173, 22, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (174, 23, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (175, 24, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (176, 25, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (177, 27, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (178, 29, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (179, 31, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (180, 32, 9, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (181, 10, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (182, 12, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (183, 14, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (184, 15, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (185, 16, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (186, 18, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (187, 19, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (188, 20, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (189, 23, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (190, 24, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (191, 25, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (192, 27, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (193, 28, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (194, 29, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (195, 30, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (196, 33, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (197, 34, 10, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (198, 10, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (199, 11, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (200, 12, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (201, 13, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (202, 14, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (203, 15, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (204, 16, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (205, 17, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (206, 18, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (207, 19, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (208, 20, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (209, 21, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (210, 22, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (211, 23, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (212, 24, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (213, 25, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (214, 26, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (215, 27, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (216, 28, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (217, 29, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (218, 30, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (219, 31, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (220, 32, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (221, 33, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (222, 34, 11, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (223, 10, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (224, 11, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (225, 13, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (226, 14, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (227, 15, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (228, 16, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (229, 19, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (230, 21, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (231, 22, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (232, 25, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (233, 26, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (234, 27, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (235, 28, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (236, 31, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (237, 34, 12, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00), (238, 15, 1, 'approved', 0, 0, '2026-02-11 20:38:24', NULL, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, 0, 0, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `faculties` -- CREATE TABLE `faculties` ( `id` bigint(20) UNSIGNED NOT NULL, `code` varchar(20) DEFAULT NULL, `name_en` varchar(255) NOT NULL, `name_ar` varchar(255) NOT NULL, `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `dean_name_en` varchar(255) DEFAULT NULL, `dean_name_ar` varchar(255) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `contact_email` varchar(255) DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `sort_order` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `faculties` -- INSERT INTO `faculties` (`id`, `code`, `name_en`, `name_ar`, `description_en`, `description_ar`, `dean_name_en`, `dean_name_ar`, `website`, `contact_email`, `is_active`, `sort_order`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'ENG', 'Faculty of Engineering', 'كلية الهندسة', 'Leading engineering education and research.', 'رائدة في التعليم الهندسي والبحث.', 'Dr. Ahmed Al-Mansour', 'د. أحمد المنصور', NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (2, 'BUS', 'Faculty of Business', 'كلية إدارة الأعمال', 'Preparing future business leaders.', 'إعداد قادة الأعمال المستقبليين.', 'Prof. Sarah Johnson', 'بروفيسور سارة جونسون', NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-13 14:52:01', '2026-02-13 14:52:01'), (3, 'SCI', 'Faculty of Science', 'كلية العلوم', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (4, 'MED', 'Faculty of Medicine', 'كلية الطب', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL); -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) NOT NULL, `connection` text NOT NULL, `queue` text NOT NULL, `payload` longtext NOT NULL, `exception` longtext NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `fee_structures` -- CREATE TABLE `fee_structures` ( `id` bigint(20) UNSIGNED NOT NULL, `name_en` varchar(255) NOT NULL, `name_ar` varchar(255) NOT NULL, `amount` decimal(12,2) NOT NULL, `currency` varchar(3) NOT NULL DEFAULT 'USD', `academic_year_id` bigint(20) UNSIGNED DEFAULT NULL, `type` enum('tuition','registration','lab','library','other') NOT NULL, `payment_type` enum('one_time','installment','per_credit') NOT NULL DEFAULT 'one_time', `is_mandatory` tinyint(1) NOT NULL DEFAULT 1, `due_date` date DEFAULT NULL, `major_id` bigint(20) UNSIGNED DEFAULT NULL, `semester_id` bigint(20) UNSIGNED DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `fee_structures` -- INSERT INTO `fee_structures` (`id`, `name_en`, `name_ar`, `amount`, `currency`, `academic_year_id`, `type`, `payment_type`, `is_mandatory`, `due_date`, `major_id`, `semester_id`, `is_active`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'Tuition Fee (Per Credit)', 'رسوم دراسية (لكل ساعة معتمدة)', 500.00, 'USD', 2, 'tuition', 'one_time', 1, NULL, NULL, NULL, 1, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24'), (2, 'Registration Fee', 'رسوم التسجيل', 200.00, 'USD', 2, 'registration', 'one_time', 1, NULL, NULL, NULL, 1, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24'), (3, 'Lab Fee', 'رسوم المختبر', 150.00, 'USD', 2, 'lab', 'one_time', 0, NULL, NULL, NULL, 1, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24'), (4, 'Library Fee', 'رسوم المكتبة', 50.00, 'USD', 2, 'library', 'one_time', 1, NULL, NULL, NULL, 1, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24'), (5, 'General Tuition', 'الرسوم الدراسية العامة', 200.00, 'JOD', 1, 'tuition', 'one_time', 1, NULL, NULL, 1, 1, NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24'); -- -------------------------------------------------------- -- -- Table structure for table `grade_appeals` -- CREATE TABLE `grade_appeals` ( `id` bigint(20) UNSIGNED NOT NULL, `mark_id` bigint(20) UNSIGNED NOT NULL, `reason` text NOT NULL, `status` enum('pending','approved','rejected') NOT NULL DEFAULT 'pending', `response` text DEFAULT NULL, `responded_by` bigint(20) UNSIGNED DEFAULT NULL, `responded_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `grade_components` -- CREATE TABLE `grade_components` ( `id` bigint(20) UNSIGNED NOT NULL, `course_offering_id` bigint(20) UNSIGNED NOT NULL, `name_en` varchar(100) NOT NULL, `name_ar` varchar(100) NOT NULL, `weight` decimal(5,2) NOT NULL, `sort_order` int(11) NOT NULL DEFAULT 0, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `grade_locks` -- CREATE TABLE `grade_locks` ( `id` bigint(20) UNSIGNED NOT NULL, `course_offering_id` bigint(20) UNSIGNED NOT NULL, `is_locked` tinyint(1) NOT NULL DEFAULT 0, `locked_by` bigint(20) UNSIGNED DEFAULT NULL, `locked_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(255) NOT NULL, `payload` longtext NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `job_batches` -- CREATE TABLE `job_batches` ( `id` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `total_jobs` int(11) NOT NULL, `pending_jobs` int(11) NOT NULL, `failed_jobs` int(11) NOT NULL, `failed_job_ids` longtext NOT NULL, `options` mediumtext DEFAULT NULL, `cancelled_at` int(11) DEFAULT NULL, `created_at` int(11) NOT NULL, `finished_at` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `kanban_boards` -- CREATE TABLE `kanban_boards` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `description` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `kanban_columns` -- CREATE TABLE `kanban_columns` ( `id` bigint(20) UNSIGNED NOT NULL, `board_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `color` varchar(255) NOT NULL DEFAULT '#6b7280', `position` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `majors` -- CREATE TABLE `majors` ( `id` bigint(20) UNSIGNED NOT NULL, `department_id` bigint(20) UNSIGNED NOT NULL, `code` varchar(20) DEFAULT NULL, `name_en` varchar(255) NOT NULL, `name_ar` varchar(255) NOT NULL, `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `required_credits` smallint(5) UNSIGNED DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `sort_order` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `majors` -- INSERT INTO `majors` (`id`, `department_id`, `code`, `name_en`, `name_ar`, `description_en`, `description_ar`, `required_credits`, `is_active`, `sort_order`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 'CS-BS', 'Computer Science', 'علوم الحاسوب', NULL, NULL, 130, 1, 1, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (2, 1, 'IS-BS', 'Information Systems', 'نظم المعلومات', NULL, NULL, 124, 1, 2, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (3, 2, 'EE-BS', 'Electrical Engineering', 'هندسة كهربائية', NULL, NULL, 140, 1, 3, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (4, 4, 'ACC-BS', 'Accounting', 'محاسبة', NULL, NULL, 126, 1, 4, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (5, 7, 'BIO-BS', 'Biology', 'بيولوجيا', NULL, NULL, 128, 1, 5, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL); -- -------------------------------------------------------- -- -- Table structure for table `marks` -- CREATE TABLE `marks` ( `id` bigint(20) UNSIGNED NOT NULL, `enrollment_id` bigint(20) UNSIGNED NOT NULL, `assessment_id` bigint(20) UNSIGNED NOT NULL, `marks_obtained` decimal(6,2) DEFAULT NULL, `feedback` text DEFAULT NULL, `graded_by` bigint(20) UNSIGNED DEFAULT NULL, `graded_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `medical_records` -- CREATE TABLE `medical_records` ( `id` bigint(20) UNSIGNED NOT NULL, `student_id` bigint(20) UNSIGNED NOT NULL, `type` enum('allergy','medication','condition','restriction','accommodation','incident') NOT NULL, `title_en` varchar(255) NOT NULL, `title_ar` varchar(255) NOT NULL, `details` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`details`)), `severity` enum('low','medium','critical') DEFAULT NULL, `document_path` varchar(255) DEFAULT NULL, `reported_at` timestamp NOT NULL DEFAULT current_timestamp(), `is_active` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `reported_by` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `medical_records` -- INSERT INTO `medical_records` (`id`, `student_id`, `type`, `title_en`, `title_ar`, `details`, `severity`, `document_path`, `reported_at`, `is_active`, `created_at`, `updated_at`, `deleted_at`, `reported_by`) VALUES (1, 10, 'medication', 'Blood Pressure Medication', 'الأنسولين', '\"{\\\"notes\\\":\\\"Quia doloribus dolores et qui.\\\"}\"', 'low', NULL, '2025-09-18 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (2, 10, 'medication', 'Insulin', 'أدوية ضغط الدم', '\"{\\\"notes\\\":\\\"Atque blanditiis ipsa non ea culpa dolore.\\\"}\"', 'medium', NULL, '2026-01-09 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (3, 11, 'condition', 'ADHD', 'الربو', '\"{\\\"notes\\\":\\\"Sed nobis cumque nihil nisi esse voluptatem et officia.\\\"}\"', 'critical', NULL, '2025-08-29 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (4, 11, 'allergy', 'Penicillin', 'الغبار', '\"{\\\"notes\\\":\\\"Dolores ipsam dolores quisquam voluptas unde nam.\\\"}\"', 'critical', NULL, '2025-09-20 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (5, 11, 'medication', 'Asthma Inhaler', 'موسع الشعب الهوائية', '\"{\\\"notes\\\":\\\"A vero aliquid ad velit quos optio.\\\"}\"', 'critical', NULL, '2025-11-21 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (6, 12, 'condition', 'ADHD', 'السكري', '\"{\\\"notes\\\":\\\"Laboriosam occaecati voluptatem et.\\\"}\"', 'critical', NULL, '2025-09-27 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (7, 12, 'allergy', 'Latex', 'الأدوية المحتوية على السلفا', '\"{\\\"notes\\\":\\\"Et minima ut est occaecati autem minus quae.\\\"}\"', 'critical', NULL, '2025-12-20 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (8, 12, 'condition', 'Diabetes', 'قصور الانتباه', '\"{\\\"notes\\\":\\\"Nihil quasi et molestiae et accusantium exercitationem.\\\"}\"', 'critical', NULL, '2025-10-13 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (9, 13, 'medication', 'Blood Pressure Medication', 'موسع الشعب الهوائية', '\"{\\\"notes\\\":\\\"Dolores omnis maxime eius aut delectus officia.\\\"}\"', 'medium', NULL, '2025-11-01 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (10, 14, 'medication', 'Blood Pressure Medication', 'موسع الشعب الهوائية', '\"{\\\"notes\\\":\\\"Eveniet quasi ut minima hic eum.\\\"}\"', 'medium', NULL, '2025-12-27 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (11, 14, 'medication', 'Insulin', 'الأنسولين', '\"{\\\"notes\\\":\\\"Tempora sit atque aut facilis magni in.\\\"}\"', 'low', NULL, '2026-02-06 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (12, 14, 'allergy', 'Dust', 'الأدوية المحتوية على السلفا', '\"{\\\"notes\\\":\\\"Ab culpa perferendis deleniti qui aut tempore ad.\\\"}\"', 'critical', NULL, '2025-11-20 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (13, 15, 'medication', 'Asthma Inhaler', 'الأنسولين', '\"{\\\"notes\\\":\\\"Qui cupiditate eius quia blanditiis.\\\"}\"', 'medium', NULL, '2025-10-15 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (14, 16, 'condition', 'ADHD', 'القلق', '\"{\\\"notes\\\":\\\"Et et maxime ut.\\\"}\"', 'critical', NULL, '2025-10-15 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (15, 16, 'medication', 'Blood Pressure Medication', 'أدوية ضغط الدم', '\"{\\\"notes\\\":\\\"Aut quae alias praesentium non et.\\\"}\"', 'low', NULL, '2025-10-16 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (16, 17, 'condition', 'Diabetes', 'القلق', '\"{\\\"notes\\\":\\\"Enim quas possimus illo.\\\"}\"', 'critical', NULL, '2025-08-20 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (17, 17, 'condition', 'Anxiety', 'الربو', '\"{\\\"notes\\\":\\\"Sunt in eaque quos in dicta ea pariatur.\\\"}\"', 'low', NULL, '2025-11-14 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (18, 17, 'allergy', 'Dust', 'الفول السوداني', '\"{\\\"notes\\\":\\\"Itaque est sunt aliquid odit praesentium facilis.\\\"}\"', 'low', NULL, '2025-10-02 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (19, 18, 'allergy', 'Dust', 'الغبار', '\"{\\\"notes\\\":\\\"Adipisci sed et saepe laborum officia consequatur.\\\"}\"', 'medium', NULL, '2025-12-22 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (20, 18, 'medication', 'Blood Pressure Medication', 'موسع الشعب الهوائية', '\"{\\\"notes\\\":\\\"Qui sunt doloremque aut veritatis voluptatem nesciunt.\\\"}\"', 'critical', NULL, '2026-01-06 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (21, 18, 'allergy', 'Latex', 'اللاتيكس', '\"{\\\"notes\\\":\\\"Consequatur totam dolor alias incidunt.\\\"}\"', 'low', NULL, '2026-01-15 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (22, 19, 'medication', 'Blood Pressure Medication', 'موسع الشعب الهوائية', '\"{\\\"notes\\\":\\\"Quas et laborum est consequatur.\\\"}\"', 'medium', NULL, '2025-11-04 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (23, 19, 'medication', 'Insulin', 'الأنسولين', '\"{\\\"notes\\\":\\\"Et enim nihil eligendi sunt.\\\"}\"', 'low', NULL, '2025-10-06 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (24, 20, 'condition', 'Asthma', 'قصور الانتباه', '\"{\\\"notes\\\":\\\"Vel tempore quaerat tempora dolore voluptates distinctio illo.\\\"}\"', 'medium', NULL, '2025-09-19 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (25, 20, 'condition', 'Diabetes', 'القلق', '\"{\\\"notes\\\":\\\"Distinctio omnis velit est adipisci dolor.\\\"}\"', 'medium', NULL, '2025-12-26 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (26, 20, 'medication', 'Asthma Inhaler', 'الأنسولين', '\"{\\\"notes\\\":\\\"Ea ipsum exercitationem dolores autem dolor saepe eaque.\\\"}\"', 'medium', NULL, '2025-12-25 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (27, 21, 'condition', 'Diabetes', 'الربو', '\"{\\\"notes\\\":\\\"Porro cupiditate quia repudiandae est.\\\"}\"', 'critical', NULL, '2025-12-03 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (28, 21, 'condition', 'Diabetes', 'الربو', '\"{\\\"notes\\\":\\\"Repudiandae ab tempore sit iste itaque adipisci beatae.\\\"}\"', 'medium', NULL, '2025-10-23 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (29, 21, 'allergy', 'Dust', 'الغبار', '\"{\\\"notes\\\":\\\"Est totam tempora magni voluptatibus non sint.\\\"}\"', 'critical', NULL, '2025-10-25 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (30, 22, 'allergy', 'Sulfa drugs', 'الأدوية المحتوية على السلفا', '\"{\\\"notes\\\":\\\"Nihil et rerum ut ut laborum et rerum.\\\"}\"', 'critical', NULL, '2026-01-15 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (31, 23, 'allergy', 'Peanuts', 'الأدوية المحتوية على السلفا', '\"{\\\"notes\\\":\\\"Minus est enim et.\\\"}\"', 'medium', NULL, '2025-09-30 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (32, 24, 'allergy', 'Latex', 'الفول السوداني', '\"{\\\"notes\\\":\\\"Pariatur eius iusto sed unde veritatis sint architecto.\\\"}\"', 'low', NULL, '2025-08-29 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (33, 24, 'medication', 'Insulin', 'أدوية ضغط الدم', '\"{\\\"notes\\\":\\\"Blanditiis voluptates adipisci vitae amet.\\\"}\"', 'critical', NULL, '2025-12-03 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (34, 24, 'medication', 'Asthma Inhaler', 'الأنسولين', '\"{\\\"notes\\\":\\\"Nesciunt totam nam quidem sed consequatur.\\\"}\"', 'medium', NULL, '2025-11-27 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (35, 25, 'medication', 'Blood Pressure Medication', 'أدوية ضغط الدم', '\"{\\\"notes\\\":\\\"Et est magnam minima doloremque cumque.\\\"}\"', 'medium', NULL, '2026-01-20 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (36, 25, 'condition', 'ADHD', 'السكري', '\"{\\\"notes\\\":\\\"Aut consequatur vitae enim similique voluptatum quo blanditiis ratione.\\\"}\"', 'medium', NULL, '2025-10-03 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (37, 25, 'medication', 'Insulin', 'الأنسولين', '\"{\\\"notes\\\":\\\"Fuga optio repellendus cum et nihil maxime occaecati.\\\"}\"', 'low', NULL, '2026-01-14 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (38, 26, 'allergy', 'Sulfa drugs', 'الأدوية المحتوية على السلفا', '\"{\\\"notes\\\":\\\"Et esse molestiae aut itaque commodi.\\\"}\"', 'low', NULL, '2026-01-18 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (39, 26, 'condition', 'Anxiety', 'قصور الانتباه', '\"{\\\"notes\\\":\\\"Necessitatibus fuga tempora incidunt et adipisci voluptas eum.\\\"}\"', 'medium', NULL, '2025-09-21 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (40, 26, 'condition', 'ADHD', 'السكري', '\"{\\\"notes\\\":\\\"Consectetur nihil facilis placeat pariatur.\\\"}\"', 'medium', NULL, '2025-09-24 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (41, 27, 'medication', 'Asthma Inhaler', 'الأنسولين', '\"{\\\"notes\\\":\\\"Quibusdam quibusdam deserunt voluptatibus vitae officia nobis.\\\"}\"', 'medium', NULL, '2025-10-24 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (42, 27, 'condition', 'Diabetes', 'القلق', '\"{\\\"notes\\\":\\\"Esse voluptatem aspernatur sit et quo nihil tempora eos.\\\"}\"', 'critical', NULL, '2026-01-15 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (43, 27, 'medication', 'Asthma Inhaler', 'الأنسولين', '\"{\\\"notes\\\":\\\"Et dolor et sint rem exercitationem.\\\"}\"', 'critical', NULL, '2026-01-10 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (44, 28, 'condition', 'ADHD', 'الربو', '\"{\\\"notes\\\":\\\"Vel nemo consequuntur est.\\\"}\"', 'low', NULL, '2025-11-14 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (45, 29, 'allergy', 'Dust', 'الأدوية المحتوية على السلفا', '\"{\\\"notes\\\":\\\"Molestias facilis harum architecto.\\\"}\"', 'medium', NULL, '2026-01-29 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (46, 29, 'allergy', 'Latex', 'البنسلين', '\"{\\\"notes\\\":\\\"Atque rerum saepe vitae voluptate dolore enim qui.\\\"}\"', 'critical', NULL, '2026-02-02 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (47, 30, 'allergy', 'Sulfa drugs', 'الغبار', '\"{\\\"notes\\\":\\\"Voluptas minus cupiditate nihil culpa.\\\"}\"', 'medium', NULL, '2025-10-02 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (48, 30, 'condition', 'Diabetes', 'السكري', '\"{\\\"notes\\\":\\\"Facere perspiciatis et eum rerum sapiente aut deleniti.\\\"}\"', 'low', NULL, '2025-11-21 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (49, 31, 'medication', 'Blood Pressure Medication', 'الأنسولين', '\"{\\\"notes\\\":\\\"Tempore deleniti id tenetur sit molestias.\\\"}\"', 'critical', NULL, '2025-12-28 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (50, 31, 'condition', 'Asthma', 'السكري', '\"{\\\"notes\\\":\\\"Quos optio omnis rem expedita.\\\"}\"', 'medium', NULL, '2026-01-27 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (51, 32, 'allergy', 'Dust', 'اللاتيكس', '\"{\\\"notes\\\":\\\"Omnis enim enim eligendi quo tempora.\\\"}\"', 'medium', NULL, '2025-10-27 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (52, 33, 'condition', 'Anxiety', 'القلق', '\"{\\\"notes\\\":\\\"Quaerat accusantium officiis fugit et.\\\"}\"', 'critical', NULL, '2025-11-05 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (53, 34, 'allergy', 'Sulfa drugs', 'اللاتيكس', '\"{\\\"notes\\\":\\\"Et in iusto harum iusto tempora natus iusto.\\\"}\"', 'low', NULL, '2025-11-24 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (54, 34, 'condition', 'Asthma', 'السكري', '\"{\\\"notes\\\":\\\"Nisi autem sequi non voluptas quo similique id et.\\\"}\"', 'medium', NULL, '2025-11-02 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1), (55, 34, 'medication', 'Insulin', 'أدوية ضغط الدم', '\"{\\\"notes\\\":\\\"Nemo dignissimos esse magni quasi maiores ut omnis voluptatem.\\\"}\"', 'critical', NULL, '2026-02-10 20:38:39', 1, '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL, 1); -- -------------------------------------------------------- -- -- Table structure for table `messages` -- CREATE TABLE `messages` ( `id` bigint(20) UNSIGNED NOT NULL, `conversation_id` bigint(20) UNSIGNED NOT NULL, `sender_id` bigint(20) UNSIGNED NOT NULL, `body_en` text DEFAULT NULL, `body_ar` text DEFAULT NULL, `attachments` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`attachments`)), `is_read` tinyint(1) NOT NULL DEFAULT 0, `read_at` timestamp NULL DEFAULT NULL, `is_deleted_by_sender` tinyint(1) NOT NULL DEFAULT 0, `is_deleted_by_receiver` tinyint(1) NOT NULL DEFAULT 0, `sent_at` timestamp NOT NULL DEFAULT current_timestamp(), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `messages` -- INSERT INTO `messages` (`id`, `conversation_id`, `sender_id`, `body_en`, `body_ar`, `attachments`, `is_read`, `read_at`, `is_deleted_by_sender`, `is_deleted_by_receiver`, `sent_at`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 15, 'Quos at fuga dolor et ipsum. Esse repellendus soluta consectetur quisquam minus doloribus qui. Eius dolore vel provident perferendis et quo inventore. Autem sunt repudiandae rerum sed culpa omnis.', 'Dolorem corrupti in alias aperiam earum. Blanditiis non sunt magnam ea unde nihil in. Quaerat reprehenderit quibusdam vero cumque sunt nihil. Rem temporibus rerum maxime ratione dolores veniam quis. Eum et eos vero omnis facilis rem.', NULL, 0, NULL, 0, 0, '2026-02-09 05:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (2, 1, 2, 'Sunt ut ea dignissimos sit commodi sint. Consequatur optio et velit aliquid et. Ut incidunt voluptatem amet voluptatibus reprehenderit voluptatem. Ea doloribus atque non voluptatem ipsum sunt minus sunt.', 'Eligendi sequi vel dolor consequuntur qui. Temporibus debitis consequatur dolorem deserunt iste. Nemo deserunt voluptatem laudantium qui ipsum quibusdam.', NULL, 0, '2026-02-11 19:38:39', 0, 0, '2026-02-10 17:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (3, 2, 19, 'Atque ut reprehenderit dolores corrupti reiciendis. Autem ratione saepe aliquid minus ut. Illo at voluptatem explicabo voluptatem omnis.', 'Accusantium sint beatae placeat possimus dolorem molestiae. Nulla est ad molestiae voluptatem nemo corrupti ad. Delectus aut quia quia neque. Ad ipsa excepturi reiciendis quisquam quia. Aspernatur aperiam alias vel.', NULL, 1, NULL, 0, 0, '2026-02-10 06:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (4, 2, 2, 'Consequatur ipsa dignissimos qui omnis. Iusto est earum distinctio consequatur at voluptatem libero. Sequi dolore consequatur qui nemo in error voluptatem.', 'Cupiditate tempora ipsam quis consectetur voluptatem non adipisci. Dolore dicta laboriosam dicta et doloremque.', NULL, 0, NULL, 0, 0, '2026-02-09 19:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (5, 2, 19, 'Quo vitae dolorem accusantium ratione provident ducimus. Rem quia et sunt. Explicabo et tenetur quibusdam praesentium soluta. Quia blanditiis qui incidunt.', 'Velit et repellendus rerum mollitia et consectetur. Aut asperiores ut nihil nihil laborum. Ducimus dolorem aliquam hic adipisci cum sunt a dolore. Impedit incidunt atque nisi.', NULL, 1, '2026-02-11 18:38:39', 0, 0, '2026-02-09 17:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (6, 3, 20, 'Quia sit enim enim nemo velit. Ipsa in qui rerum consequuntur distinctio non repellat. Facere voluptate porro occaecati sequi ducimus sed. Aut molestiae recusandae molestias vel quia et sed.', 'Minus nemo iusto ut quis voluptate. Dolorum ea aut ex voluptas modi tempora atque. Quia totam a ut sit corrupti quo voluptas soluta.', NULL, 0, NULL, 0, 0, '2026-02-11 16:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (7, 3, 2, 'Impedit voluptatem est dolor nemo aliquid facilis officia. Dicta quia illo praesentium hic consequatur perferendis et. Fuga sint voluptas fugit eos.', 'Consequatur repudiandae quia modi. Cum reprehenderit ex ut ex. Omnis quos suscipit provident commodi.', NULL, 0, '2026-02-11 17:38:39', 0, 0, '2026-02-10 17:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (8, 4, 22, 'Fugit repellendus et omnis fuga quas repellendus cum blanditiis. Ut qui voluptatem distinctio minus harum voluptatem. At ipsa ea veritatis mollitia.', 'Et ullam voluptas blanditiis et dolorem. Fuga veritatis laborum odit voluptatem optio. Modi aut neque voluptates modi accusantium voluptates ut. Fuga aut tenetur et porro. Fugiat qui quo provident alias autem ea sit.', NULL, 1, '2026-02-13 19:48:05', 0, 0, '2026-02-09 15:38:39', '2026-02-11 20:38:39', '2026-02-13 19:48:05', NULL), (9, 4, 2, 'Accusamus voluptas ipsa aperiam culpa voluptatem quidem maxime sed. Consequuntur necessitatibus et consequuntur blanditiis. Aut aut harum rerum nihil aliquam. Atque quia consequatur blanditiis delectus.', 'Sint quod repellat quis sit sint. Optio quam inventore itaque. Facilis ut quis vel voluptas. Tenetur laudantium totam sint quam repudiandae nisi totam.', NULL, 0, NULL, 0, 0, '2026-02-09 15:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (10, 4, 22, 'Facere odit debitis et occaecati. Ea accusamus aspernatur corrupti est saepe. Qui dolor qui itaque autem. Voluptatem repellendus aut provident aperiam. Quidem ipsa minima et porro repudiandae maxime natus.', 'Voluptas provident dolor animi excepturi. Quia ratione aut nam molestiae.', NULL, 1, NULL, 0, 0, '2026-02-11 10:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (11, 4, 2, 'Nemo quae voluptas at nesciunt. Delectus sint voluptatem exercitationem eum soluta totam. Et aut porro dolor libero id accusantium illo. A voluptas modi eius a eos.', 'Rerum sed praesentium praesentium veritatis ad rerum nihil autem. Molestias quia consequuntur distinctio cum. Soluta ipsa rem consequatur corporis id error. Possimus maiores tenetur minus.', NULL, 1, '2026-02-11 18:38:39', 0, 0, '2026-02-11 07:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (12, 4, 22, 'Autem porro impedit expedita dolor aut iste occaecati quia. Et quas est fuga. Omnis qui qui eos est aut aut a.', 'Consequuntur at dolorum pariatur consequatur quo nihil corporis autem. Est molestiae ipsum aut placeat. Explicabo assumenda mollitia provident similique molestiae.', NULL, 1, '2026-02-13 19:48:05', 0, 0, '2026-02-11 04:38:39', '2026-02-11 20:38:39', '2026-02-13 19:48:05', NULL), (13, 5, 34, 'Consequuntur vitae quibusdam est et cumque quia. Magnam qui dolores nemo alias nisi. Sed saepe accusamus illo quia non sunt. Sunt dolorem eos ipsum totam veniam facilis.', 'Expedita eos suscipit magni debitis. Eius culpa aut aliquam officiis perferendis aliquam. Quia aut consequatur officiis dolor molestias atque. Exercitationem adipisci recusandae deserunt eos sit sed maiores.', NULL, 1, '2026-02-13 19:43:45', 0, 0, '2026-02-10 04:38:39', '2026-02-11 20:38:39', '2026-02-13 19:43:45', NULL), (14, 5, 2, 'Illum sequi optio placeat eaque asperiores totam. Quae qui est ut aut aperiam ut porro. Magni laudantium ex sint cupiditate est eius tenetur. Cupiditate quibusdam doloremque similique ullam ullam dolor cupiditate incidunt.', 'Itaque eum est molestiae sit voluptas sit esse. Iste dolores similique repellat dolorum cumque. Cupiditate vero autem nam debitis. Facilis libero repudiandae ut vitae quos et.', NULL, 1, '2026-02-11 15:38:39', 0, 0, '2026-02-10 05:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (15, 5, 34, 'Veniam aut voluptate occaecati ut explicabo. Aliquid cum sed quidem id. Quidem dicta odio ratione velit necessitatibus. Natus eveniet et dolorem aperiam nesciunt. Numquam tempore beatae aliquam accusantium sapiente nisi in culpa.', 'Sunt laboriosam odit neque expedita eaque itaque. Consequatur voluptate consequatur sunt et. Dolores qui reprehenderit accusantium consequuntur iure pariatur. Est non iure dolore voluptates omnis sunt.', NULL, 1, NULL, 0, 0, '2026-02-10 13:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (16, 5, 2, 'Consequatur quo atque sunt veritatis non asperiores. Aut reprehenderit dolorum dolore impedit. Harum quidem vero voluptatem facilis sunt. Aut delectus ea omnis inventore quasi laboriosam.', 'Sequi quia adipisci exercitationem odio. Velit corporis et quia doloremque dolorem quidem. Officia quas velit sapiente et.', NULL, 0, '2026-02-11 13:38:39', 0, 0, '2026-02-10 17:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (17, 6, 11, 'Rerum sit exercitationem tenetur ut. Assumenda possimus quia omnis in sint. Omnis maxime sed reprehenderit placeat aliquid.', 'In nulla pariatur officiis sapiente omnis quis quia. Dolorem soluta sunt minima vitae. Vero est ad ut quia ut et non pariatur. Laudantium aut hic ipsam delectus repellat magnam.', NULL, 1, NULL, 0, 0, '2026-02-09 14:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (18, 6, 5, 'Vitae quae quos perferendis est doloribus. Ducimus modi saepe eveniet. Iusto maxime rem omnis cupiditate. Non laudantium rerum omnis a provident itaque doloribus.', 'Mollitia dolorum modi eos suscipit eveniet nulla repudiandae. Minima quia error sed ducimus. Saepe numquam dolores et. Earum officiis omnis qui.', NULL, 1, '2026-02-11 17:38:39', 0, 0, '2026-02-09 19:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (19, 6, 11, 'Laudantium officia perspiciatis dolorum et. Qui in iste enim hic neque nostrum esse. Atque vel quaerat nobis illum voluptatem natus maiores. Fugiat et eligendi sint nemo.', 'Repudiandae et nesciunt dolores tempore laborum illum. Quaerat velit id aut esse quia provident dolorem fugiat.', NULL, 0, NULL, 0, 0, '2026-02-10 23:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (20, 7, 13, 'Necessitatibus sed voluptatum laudantium nihil reiciendis ex. Quia et quasi officia consequatur. Recusandae eligendi doloribus qui rerum.', 'Modi totam similique repudiandae quos. Consequatur autem distinctio dolorum molestiae alias accusantium ad. Voluptate qui tempora voluptas voluptate aut quae inventore.', NULL, 0, '2026-02-11 15:38:39', 0, 0, '2026-02-11 02:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (21, 7, 5, 'Animi cum aut error ut ducimus. Molestiae eaque maiores natus omnis quae. Sint aperiam dolore eum similique ratione consequuntur omnis. Doloribus aut quod quis possimus in laborum tempore.', 'Atque maiores quos cumque reprehenderit tempora. Neque laboriosam reprehenderit rem soluta cum harum. Consequatur amet et dolore ut sapiente ipsa architecto quos. Consequuntur perspiciatis neque possimus laudantium ipsam vitae inventore. Eveniet et quia sunt voluptas.', NULL, 1, NULL, 0, 0, '2026-02-09 15:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (22, 7, 13, 'Perferendis deleniti debitis esse veniam. Ipsum sed totam provident iste impedit ut modi. Doloribus veniam aut eos aliquid possimus.', 'Et ea perspiciatis nihil nesciunt error accusantium ea quia. Maxime voluptatem ab ducimus autem repellat. Possimus necessitatibus aut vero incidunt harum molestiae doloremque. In iusto nesciunt illum sunt.', NULL, 1, NULL, 0, 0, '2026-02-09 02:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (23, 7, 5, 'Unde beatae ea enim aspernatur impedit consequatur. Ut non quam cum aspernatur iusto mollitia. Asperiores at placeat rerum. Repudiandae tempora sed quidem quia.', 'Natus in qui iste id natus. Delectus molestias dolorem quisquam totam recusandae eum quaerat. Est voluptas iure unde perspiciatis distinctio quibusdam. Omnis alias assumenda veniam quisquam quasi quia aut. Delectus voluptas et et et nostrum.', NULL, 0, '2026-02-11 13:38:39', 0, 0, '2026-02-09 22:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (24, 7, 13, 'Laudantium magnam sed rerum blanditiis velit occaecati. Quo ipsum voluptatem omnis voluptatem sit esse aut provident. Cupiditate voluptatem in optio autem illo molestiae. Perspiciatis nisi aut numquam aut sint libero dolor.', 'Maiores non consequatur rerum nobis at. Modi at accusamus aut autem incidunt. Et ab eos vel reiciendis ut enim officiis fuga.', NULL, 1, NULL, 0, 0, '2026-02-10 23:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (25, 8, 19, 'Consequatur quia et eaque quae est excepturi. Laborum expedita nihil excepturi magnam velit. Consequuntur nemo et vel exercitationem.', 'Quia explicabo sed modi quisquam dolorem quo. Omnis delectus sint minus. Aut id voluptas iure ea.', NULL, 0, NULL, 0, 0, '2026-02-09 12:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (26, 9, 24, 'Et officiis blanditiis saepe rerum modi quae optio. Iure temporibus facere ullam omnis nobis magni sit.', 'Ipsa est similique velit quasi omnis qui explicabo. Odio aut ea non atque. Qui modi laborum aut eaque.', NULL, 0, NULL, 0, 0, '2026-02-11 15:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (27, 9, 5, 'Id aut rerum voluptatem nihil voluptatem. Earum debitis qui voluptatem pariatur dolor corrupti rerum. Ut ex dolores ipsum ea dolorem sapiente.', 'Enim voluptates aut iste voluptatem quis temporibus. Quia itaque eos qui recusandae optio. Ullam sunt id dolores ipsam aliquam sed enim. Quasi veniam sit et dolor porro ut architecto.', NULL, 0, '2026-02-11 19:38:39', 0, 0, '2026-02-11 13:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (28, 9, 24, 'Nisi repudiandae ex delectus. Et praesentium amet ut. Labore sint possimus est. Fuga enim ut error ratione.', 'Ut est commodi ipsum et. Doloribus nisi dolor ex sint dicta. Rerum et tenetur reiciendis rerum quam repellendus tempora.', NULL, 1, NULL, 0, 0, '2026-02-10 08:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (29, 9, 5, 'Incidunt sit voluptatem dicta molestias sapiente. Ipsum accusamus et aspernatur earum nihil. Alias harum rerum maiores est officiis.', 'Accusamus enim ut veniam aut. Omnis voluptatem quasi error modi. Consequatur aliquam qui maiores quis.', NULL, 1, NULL, 0, 0, '2026-02-10 20:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (30, 9, 24, 'A eos iste beatae mollitia consectetur. Ut ratione sit et similique optio. Illum sunt explicabo nam ut sed nihil. Maiores incidunt sit sed consequuntur.', 'Nostrum recusandae temporibus consequatur ea ducimus. Ea enim qui in aut sit quo voluptates. Perferendis nam nostrum qui ipsum. Quos id corporis in officia ipsum unde.', NULL, 1, '2026-02-11 15:38:39', 0, 0, '2026-02-09 02:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (31, 10, 26, 'Aliquid qui est quae aut et error. Impedit quia voluptas est sequi reprehenderit. Voluptatem ipsam eaque veniam sint. Est officiis rerum ea qui voluptatem.', 'Laboriosam assumenda omnis aliquid. Autem pariatur aut non rerum. Quia voluptatem praesentium consequatur excepturi sequi. Earum sed eveniet commodi occaecati beatae.', NULL, 1, NULL, 0, 0, '2026-02-09 05:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (32, 10, 5, 'Qui perspiciatis quia ut omnis. Aliquam sit qui sit facilis ut molestiae. Quis debitis beatae repellendus exercitationem magni excepturi. Voluptas itaque repudiandae sequi suscipit itaque.', 'Magni qui ipsa omnis. Blanditiis corrupti mollitia occaecati repudiandae nihil officia.', NULL, 0, NULL, 0, 0, '2026-02-10 02:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (33, 10, 26, 'Inventore ullam sed ut quo beatae. Deleniti aut nisi unde exercitationem voluptatum explicabo iste. Distinctio consectetur aliquam animi minus nesciunt ipsam laboriosam in.', 'Velit laudantium nulla laboriosam asperiores. Debitis explicabo est et. Est itaque aspernatur tempora qui est iusto consequuntur. Nisi reprehenderit nulla sunt dicta unde voluptates ipsum.', NULL, 0, '2026-02-11 10:38:39', 0, 0, '2026-02-11 04:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (34, 10, 5, 'Blanditiis voluptatem magnam enim. Aut aperiam dolorem vel iste voluptatibus. Dolorem eius dolore molestias voluptatem voluptatem ut fuga. Magnam sapiente corrupti cum alias veniam.', 'Dolorem eos qui quis odio amet non. Iusto quam placeat ea consectetur. Sunt necessitatibus aspernatur possimus accusamus dicta aperiam ab. Voluptas ut et qui adipisci in pariatur.', NULL, 0, '2026-02-11 10:38:39', 0, 0, '2026-02-11 06:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (35, 11, 14, 'Corrupti similique et placeat. Natus doloremque aut quia non quia tenetur quaerat aperiam. Maiores alias omnis non illum unde maiores fugiat. Perferendis cupiditate nesciunt accusamus dolor rerum omnis tempore placeat.', 'Corrupti distinctio minus nihil ad perspiciatis at nihil corrupti. In nulla tenetur nobis eum libero illo ea. Amet aspernatur enim suscipit neque est aliquid.', NULL, 0, '2026-02-11 18:38:39', 0, 0, '2026-02-10 17:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (36, 11, 6, 'Iusto nobis aut maiores laboriosam aut ut. Quod in hic fugiat harum. Sapiente molestiae voluptatem qui rerum eius.', 'Qui in fuga vel voluptas iste corrupti. Maiores libero in doloremque sit et natus. Rem et voluptates sed fugit esse accusamus.', NULL, 1, NULL, 0, 0, '2026-02-09 20:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (37, 12, 23, 'Enim odio blanditiis unde perferendis et voluptatem. Enim sapiente debitis quis mollitia et quis non. Qui molestias unde ea nisi quia exercitationem quis.', 'Perferendis qui quis dolores sequi aliquam. Molestias quis odit libero corporis quo. Nihil voluptatum ut odio et. Vel est modi dolorem quasi.', NULL, 1, NULL, 0, 0, '2026-02-08 22:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (38, 13, 24, 'Nobis fuga corporis ut repellat. Et ut blanditiis ea ut esse in et.', 'Non quaerat incidunt blanditiis. Totam accusamus eligendi doloribus culpa repellat deserunt eum. Est labore quod ducimus est at corporis. Illo officiis occaecati nostrum enim delectus quaerat veniam.', NULL, 1, NULL, 0, 0, '2026-02-10 23:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (39, 13, 6, 'Excepturi porro praesentium autem est error est. Quos perspiciatis est est. Assumenda quis recusandae animi.', 'Est enim veritatis tenetur provident voluptatem adipisci. Alias nobis omnis in a perspiciatis. Similique temporibus impedit dolores commodi explicabo accusantium. Modi beatae quasi voluptatem quis non nihil sed.', NULL, 0, NULL, 0, 0, '2026-02-11 14:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (40, 14, 25, 'Odio quia corporis magni debitis id cupiditate. Eaque autem eligendi corporis et qui labore. Id ea ratione sunt perferendis.', 'Rem id totam vero atque. Alias saepe nisi quam atque cum earum dolorem. Maxime possimus dolor et ea reiciendis quae veniam. Et perferendis sequi illo placeat molestiae est occaecati.', NULL, 1, '2026-02-11 16:38:39', 0, 0, '2026-02-10 23:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (41, 14, 6, 'Eum eos animi autem doloribus animi voluptas. Aliquam ut temporibus velit. Qui excepturi voluptatem sapiente tempore.', 'Tempore quos doloribus asperiores expedita accusantium dolorem. Beatae dolor assumenda aperiam soluta consequatur nemo fuga. Iure autem amet et nisi assumenda et eum quae. Qui ut non ea ut.', NULL, 0, '2026-02-11 08:38:39', 0, 0, '2026-02-11 15:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (42, 14, 25, 'Rerum fugiat provident totam. Non velit temporibus quaerat. Culpa nihil qui aut est ea culpa. Ut sint veritatis dolorum quisquam perferendis est delectus.', 'Non neque amet quibusdam et expedita eos sed. Autem et eos et repellendus provident. Distinctio ducimus magnam aut officiis dolorum. Voluptatum eligendi omnis provident ratione.', NULL, 1, NULL, 0, 0, '2026-02-10 13:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (43, 14, 6, 'Et odio magni est sunt similique dolor cupiditate at. Pariatur beatae molestiae voluptatem aut doloremque. Beatae sit adipisci earum omnis enim.', 'Modi qui est totam non tempore qui minima. Aspernatur veritatis voluptatem omnis ipsa aut omnis consequuntur. Pariatur sunt quis maxime velit. Corrupti ipsam ea iure qui.', NULL, 1, '2026-02-11 13:38:39', 0, 0, '2026-02-09 20:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (44, 14, 25, 'Minima expedita sunt cumque omnis odit quibusdam. Cum nesciunt illo fugiat nobis ducimus consectetur. Quia est commodi labore et. Ea ipsam itaque molestias harum sint.', 'Eius id vel quos necessitatibus enim. Temporibus assumenda labore quia ipsum.', NULL, 0, '2026-02-11 15:38:39', 0, 0, '2026-02-11 10:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (45, 15, 34, 'Quo culpa temporibus est architecto sed. Et quasi non rerum accusamus debitis. Ea consequatur est at repellat dolorum et. Et qui voluptatem neque explicabo.', 'Dolorem eaque corrupti quos. Facilis quisquam minima sit inventore sit deleniti. Autem quia voluptate illo quia. Molestias assumenda et tenetur laboriosam iure.', NULL, 1, NULL, 0, 0, '2026-02-11 01:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (46, 15, 6, 'Iure eligendi aliquam expedita accusamus. Soluta eum vero cupiditate autem aut expedita molestiae. Dolorem saepe vitae voluptatem animi. Incidunt accusantium quisquam officiis aut ullam ut.', 'Quaerat voluptas quas consectetur libero. Est quasi architecto reiciendis qui odit suscipit eum debitis. Fugiat dicta iusto ullam repudiandae dolores natus voluptas. Ut temporibus sit perspiciatis adipisci quasi. Repudiandae cumque eveniet ut possimus.', NULL, 0, NULL, 0, 0, '2026-02-10 16:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (47, 15, 34, 'Tempore consequatur nobis sed odit ut. Quis quos et quia sunt sed et. Qui consequuntur hic nam nisi quae quibusdam beatae non.', 'Incidunt velit dolor et est quae. Qui esse odio qui assumenda quia veritatis. Cum modi veritatis et pariatur et nesciunt et consequatur. Omnis dicta illum non quam cumque necessitatibus similique.', NULL, 0, '2026-02-11 17:38:39', 0, 0, '2026-02-11 09:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (48, 15, 6, 'Esse voluptas natus aliquam veniam. Maiores quis non neque dolorem nesciunt asperiores. Quia sapiente ut molestiae. Quo magni earum placeat fugiat.', 'Exercitationem expedita ea fuga et quo voluptatem quia. Qui quia itaque omnis deleniti. Illo ipsam laborum rem pariatur ut. Repudiandae quam consequatur modi cupiditate. Eum consequuntur sapiente iure maxime quibusdam totam corporis unde.', NULL, 0, '2026-02-11 10:38:39', 0, 0, '2026-02-09 01:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (49, 15, 34, 'Corporis ab ipsa voluptatem nemo. Mollitia voluptas nulla voluptatibus qui temporibus est quis. Quo nemo quasi neque ab eligendi. Officiis atque et maxime ea delectus architecto omnis.', 'Perferendis nesciunt maiores nobis. Consequatur fuga voluptate molestias id eos et dolorum et. Odio nihil voluptatem veritatis alias voluptatem quia non. Commodi enim error velit magni animi iure.', NULL, 1, '2026-02-11 16:38:39', 0, 0, '2026-02-09 07:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (50, 16, 13, 'Harum asperiores consequuntur quos. Rerum fugiat eius sequi.', 'Pariatur qui autem dolor repellendus. Et numquam unde et et excepturi temporibus. Fugit animi veniam error voluptatibus similique et et assumenda. Voluptatem non voluptatem natus libero quia a. Temporibus tempore quae enim expedita saepe.', NULL, 1, '2026-02-11 13:38:39', 0, 0, '2026-02-09 06:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (51, 16, 7, 'Assumenda sapiente autem ipsa similique dolorem reiciendis vitae. Qui est et porro aliquam reprehenderit pariatur enim odio. Qui ut quia culpa accusamus vel et. Vero laudantium excepturi voluptates fuga.', 'Consequatur aspernatur sint non doloribus. Rem eius omnis nulla qui cupiditate enim atque. Mollitia magni perferendis tempora rem rerum voluptatem dicta eveniet.', NULL, 1, NULL, 0, 0, '2026-02-10 18:08:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (52, 16, 13, 'In fuga ad explicabo voluptatem molestiae. Aliquid fugit explicabo eos. Mollitia doloremque dolor quia et.', 'Blanditiis sit voluptatum modi cum. Recusandae autem similique vero assumenda. Sed in voluptas sapiente nulla possimus vero quod id.', NULL, 1, '2026-02-11 08:38:39', 0, 0, '2026-02-09 21:38:39', '2026-02-11 20:38:39', '2026-02-11 20:38:39', NULL), (53, 17, 17, 'Quia sint ratione possimus est aspernatur. Occaecati eius et rerum nemo omnis fugit maiores. Repellendus neque nemo minima saepe non.', 'Est modi non et fugit quod laudantium. Nulla ipsam omnis autem eius aut. Itaque ullam omnis est. Error et repellat quisquam dolorum.', NULL, 1, NULL, 0, 0, '2026-02-09 09:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (54, 18, 18, 'Labore porro sequi est voluptas sed fuga iste. Iure et impedit explicabo officia quis veritatis quas. Quasi illo non reiciendis odio non quibusdam cupiditate.', 'Molestiae ipsum at asperiores rerum debitis porro a. Veniam ipsam cupiditate qui ipsa sint quis. Quisquam delectus id doloremque consectetur.', NULL, 1, NULL, 0, 0, '2026-02-10 11:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (55, 18, 7, 'Ratione quod non molestiae. Harum dolore sunt quo et iste. Veniam porro molestias ea modi. Voluptatem voluptatem et quos et et dolores et. Perferendis quaerat neque et eligendi.', 'Et asperiores laborum et in tenetur ipsam minus. Sunt non sequi perspiciatis quia fuga beatae. Aut ducimus voluptate et numquam rerum corrupti.', NULL, 1, '2026-02-11 18:38:40', 0, 0, '2026-02-10 14:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (56, 18, 18, 'Quis nihil eveniet saepe sit quae eveniet. Excepturi eum molestias ut libero. Ipsum qui temporibus quo aut incidunt.', 'Placeat dolores commodi aut libero. Aperiam deleniti aperiam laborum architecto aut quibusdam perferendis mollitia. Maiores itaque vel quis iusto tenetur unde. Occaecati dignissimos eius similique doloribus a.', NULL, 1, '2026-02-11 15:38:40', 0, 0, '2026-02-10 01:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (57, 18, 7, 'Cum debitis voluptatibus ut maiores et dolor nostrum. Et fugit illum consequuntur dolore dolorem quia enim. Commodi aliquam qui dolore voluptatem.', 'Minus exercitationem omnis placeat non ex velit aliquid. Hic fugiat qui voluptas molestias culpa veniam perferendis. Vel dolores voluptas exercitationem perspiciatis molestiae quod.', NULL, 1, NULL, 0, 0, '2026-02-11 17:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (58, 18, 18, 'Sunt sapiente tenetur nam sequi ullam. Earum odio eligendi sunt dolore voluptas. Officia dignissimos nemo consequuntur ipsum cum voluptatem. Nam corporis assumenda eos.', 'Ullam eos velit odit recusandae autem sequi. Commodi accusamus rerum omnis deserunt soluta. Asperiores autem quasi cupiditate et eveniet.', NULL, 1, NULL, 0, 0, '2026-02-10 00:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (59, 19, 25, 'Dignissimos eius possimus molestiae tempore. Qui laborum quis non rerum iure sunt eaque. Eaque et sapiente ipsa deserunt et quisquam a porro.', 'Itaque quidem et iure neque. Dolor rem ut esse in nulla. Nostrum hic nam debitis placeat. Laudantium enim voluptatem et optio incidunt pariatur.', NULL, 1, '2026-02-11 13:38:40', 0, 0, '2026-02-10 15:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (60, 19, 7, 'Excepturi nulla in et qui possimus voluptatem asperiores. Sed consequuntur earum ut excepturi ad. Libero consequatur animi aut beatae. Aut at natus veritatis voluptatum sed quia. Aut ipsam repudiandae quisquam quae repellat doloremque.', 'Cupiditate vel rerum at numquam ut. Rerum est impedit qui magnam rerum deserunt mollitia provident. Minima quos qui magnam magni velit nam tempore. Quidem a voluptatibus veritatis consequatur deserunt.', NULL, 0, '2026-02-11 18:38:40', 0, 0, '2026-02-10 07:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (61, 19, 25, 'Esse est omnis occaecati qui corrupti neque. Esse minima minus commodi velit. Eos est fuga voluptate aut id aspernatur ipsa et. Aperiam in sed sed.', 'Fuga distinctio fugit doloribus consequuntur. Quibusdam sint dolorem et voluptatibus. Praesentium dicta et ab vel exercitationem ab. Minima qui et et corrupti ratione eius.', NULL, 0, NULL, 0, 0, '2026-02-11 15:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (62, 19, 7, 'Architecto sed vero voluptate veniam eos. Quisquam velit est consequuntur consequatur explicabo. Accusamus voluptas consequatur voluptatem perferendis. Commodi aliquid sit quis explicabo adipisci.', 'Blanditiis sint numquam dicta deserunt officia corrupti. Quo hic quia dolorum eius asperiores. Atque et accusamus a non voluptas ea non. Molestiae dolorem ut facilis sint.', NULL, 1, NULL, 0, 0, '2026-02-11 15:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (63, 20, 33, 'Aut nulla repellat distinctio voluptas dicta velit. Saepe dolorum aliquid neque animi dignissimos deserunt consectetur. Libero sapiente consequatur eaque tempore aut harum quidem.', 'Placeat aliquam eveniet aut in tenetur quod ratione. Sint laboriosam alias veritatis sit. Illo earum quia nostrum. Est enim qui id rerum consectetur et tenetur ea. Architecto eaque id voluptatem nesciunt nihil.', NULL, 1, NULL, 0, 0, '2026-02-09 00:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (64, 20, 7, 'Rerum ad magni accusamus et et eaque laboriosam. Quod qui odio possimus sed laudantium voluptatem. Cumque adipisci veritatis earum voluptatibus nihil.', 'Nemo neque non nobis sapiente iusto. Et et at quod expedita. Non nihil eaque est et qui.', NULL, 0, NULL, 0, 0, '2026-02-09 23:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (65, 20, 33, 'Quis saepe deserunt animi facilis. Tempora corrupti libero ut officia perferendis et sed. Doloremque sequi nobis occaecati recusandae. Quam nemo ab sit voluptas earum.', 'Laudantium officia maiores quae. Labore similique corporis pariatur et. Sed enim eum aperiam omnis placeat eaque. Iure et quaerat possimus eos amet qui.', NULL, 1, '2026-02-11 11:38:40', 0, 0, '2026-02-10 14:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (66, 21, 11, 'Iure sed aspernatur aperiam rerum ut eveniet. In dicta a omnis. Et voluptas molestiae quia odit. Enim corporis explicabo debitis maxime.', 'Facilis adipisci laudantium et. Molestias deleniti aut occaecati maiores ullam odio cupiditate qui. Assumenda quia est quod repellat dolorem vitae. Ut vel aut tempora voluptate id est quia.', NULL, 0, '2026-02-11 15:38:40', 0, 0, '2026-02-09 12:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (67, 21, 8, 'Quia sint quis hic ullam vel. Enim tenetur maiores dolores ducimus excepturi. Illo pariatur corrupti eligendi accusantium nobis.', 'Reiciendis alias ea maiores eum omnis voluptatem. Alias autem sit laudantium quia qui id consequatur. Eius ducimus nihil aut inventore corrupti.', NULL, 0, NULL, 0, 0, '2026-02-10 04:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (68, 21, 11, 'Iure doloribus dolor ea enim ut. Assumenda tenetur dolorum maxime ut tempora sed modi. Voluptatum eum est deserunt.', 'Qui nisi tenetur totam doloribus iste. Harum culpa sit corrupti eius debitis facilis et. Est cumque nostrum veritatis autem. Sit aut neque dolor iusto quasi asperiores dignissimos.', NULL, 0, NULL, 0, 0, '2026-02-11 11:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (69, 21, 8, 'Nesciunt facilis ducimus est aut. Ut iusto nesciunt natus nihil provident voluptatum voluptas est. Iste et qui minima consequuntur dolore.', 'Repudiandae consectetur impedit dignissimos repellendus voluptatem delectus et. At quibusdam iure exercitationem sed accusantium aut itaque. Rerum ut tempora accusamus excepturi. Placeat est facilis aut iusto quia.', NULL, 1, '2026-02-11 17:38:40', 0, 0, '2026-02-09 05:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (70, 22, 13, 'Qui provident nam natus optio. Aut deserunt voluptatem dolor quis odit iste eos reiciendis. Ullam rerum autem perferendis in deserunt hic minus. Esse quia quaerat sit adipisci.', 'Temporibus veniam unde molestias earum iusto voluptatem totam temporibus. Quas impedit et sint. Architecto cupiditate earum similique enim. Repellendus assumenda facilis earum labore.', NULL, 1, '2026-02-11 15:38:40', 0, 0, '2026-02-10 21:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (71, 23, 17, 'Nihil consequuntur rem neque consectetur reiciendis aut aliquam magnam. Voluptatem non incidunt nemo sit. Est fuga accusamus officia ab in rerum totam.', 'Atque quas perspiciatis fugit amet fugit tenetur qui. Porro praesentium tempore dolorem mollitia rerum consequuntur. Cum voluptatum cumque magnam nisi nam odio hic tenetur.', NULL, 0, NULL, 0, 0, '2026-02-09 15:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (72, 23, 8, 'Rerum dolores dolorem nobis ut quae. Nulla voluptatem pariatur rerum iste. Et aspernatur perferendis nesciunt commodi ut optio.', 'Sed totam fugiat cupiditate illum. Dignissimos dignissimos voluptas sed sed. Doloribus voluptatem quam velit rerum.', NULL, 0, NULL, 0, 0, '2026-02-10 02:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (73, 23, 17, 'Perspiciatis sint rerum repellat earum eum tempore. Voluptas repudiandae rerum doloremque a ut quia. Itaque in est quo quos ut culpa.', 'Dolore doloribus qui sapiente unde. Quod in animi expedita quis. Officiis ab quos sed vitae quas. Quasi sit omnis sunt officiis laborum.', NULL, 0, '2026-02-11 11:38:40', 0, 0, '2026-02-11 01:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (74, 24, 24, 'Non consequuntur amet natus. Molestiae dolores iusto illum nostrum nihil. Omnis sunt ea molestiae enim reprehenderit laudantium. Ullam animi iusto ut nihil et molestiae voluptatibus.', 'Maiores et et recusandae ullam est. Illo consectetur dolor ullam odio qui soluta. Blanditiis mollitia consequatur maiores.', NULL, 1, '2026-02-11 19:38:40', 0, 0, '2026-02-09 00:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (75, 24, 8, 'Consequatur est fugiat sunt molestiae. Nisi a quo quidem quia perferendis. Eligendi quisquam debitis voluptatem. Exercitationem quaerat autem maxime delectus.', 'Quo sed rerum illum at omnis aut tenetur. Dolorem aut est mollitia. Ullam sit illum sit ut natus vero deleniti. Tempore explicabo ut ullam ipsa. Aliquam et dicta expedita.', NULL, 0, NULL, 0, 0, '2026-02-10 13:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (76, 25, 29, 'Ut ut sequi sit qui quia autem neque. Labore nihil quia quibusdam ipsam ad. Debitis veritatis maiores quos qui. Eaque quia explicabo provident velit deserunt repellat incidunt vel.', 'Pariatur veritatis et id soluta. Modi repudiandae ut minima voluptatum voluptatum. Beatae neque nihil illo nobis.', NULL, 0, NULL, 0, 0, '2026-02-11 15:38:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL), (77, 25, 8, 'Sequi nesciunt praesentium aut sit. Consequatur cumque qui ullam velit sit quasi. Velit ipsa sit omnis. Voluptatum odio deserunt odit qui iste qui.', 'Aut dolorem est nemo placeat sunt rem ut. Debitis necessitatibus voluptatem suscipit maiores maxime. Debitis aut quam harum recusandae. Labore perferendis quasi temporibus sed iure aut nesciunt.', NULL, 0, '2026-02-11 18:38:40', 0, 0, '2026-02-10 12:08:40', '2026-02-11 20:38:40', '2026-02-11 20:38:40', NULL); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '0001_01_01_000000_create_users_table', 1), (2, '0001_01_01_000001_create_cache_table', 1), (3, '0001_01_01_000002_create_jobs_table', 1), (4, '2025_12_31_225310_create_faculties_table', 1), (5, '2025_12_31_225320_create_departments_table', 1), (6, '2025_12_31_225321_create_majors_table', 1), (7, '2025_12_31_225321_create_user_profiles_table', 1), (8, '2025_12_31_225322_create_accessibility_settings_table', 1), (9, '2025_12_31_225322_create_student_profiles_table', 1), (10, '2025_12_31_225323_create_teacher_profiles_table', 1), (11, '2025_12_31_225326_create_courses_table', 1), (12, '2025_12_31_225327_create_course_prerequisites_table', 1), (13, '2025_12_31_225328_create_academic_years_table', 1), (14, '2025_12_31_225329_create_semesters_table', 1), (15, '2025_12_31_225330_create_course_offerings_table', 1), (16, '2025_12_31_225330_create_enrollments_table', 1), (17, '2025_12_31_225331_create_attendances_table', 1), (18, '2025_12_31_225332_create_absence_reason_codes_table', 1), (19, '2025_12_31_225333_create_attendance_excuses_table', 1), (20, '2025_12_31_225334_create_assessment_types_table', 1), (21, '2025_12_31_225335_create_assessments_table', 1), (22, '2025_12_31_225335_create_grade_components_table', 1), (23, '2025_12_31_225336_create_marks_table', 1), (24, '2025_12_31_225337_create_grade_appeals_table', 1), (25, '2025_12_31_225338_create_grade_locks_table', 1), (26, '2025_12_31_225339_create_fee_structures_table', 1), (27, '2025_12_31_225339_create_medical_records_table', 1), (28, '2025_12_31_225340_create_payments_table', 1), (29, '2025_12_31_225341_create_announcements_table', 1), (30, '2025_12_31_225342_create_course_materials_table', 1), (31, '2025_12_31_225343_create_discussions_table', 1), (32, '2025_12_31_225344_create_conversations_table', 1), (33, '2025_12_31_225346_create_conversation_participants_table', 1), (34, '2025_12_31_225347_create_messages_table', 1), (35, '2025_12_31_225348_create_notifications_table', 1), (36, '2025_12_31_225349_create_activity_logs_table', 1), (37, '2025_12_31_225350_create_settings_table', 1), (38, '2026_01_03_201641_add_advanced_accessibility_fields_to_accessibility_settings_table', 1), (39, '2026_01_06_163917_create_questions_table', 1), (40, '2026_01_06_163918_create_question_options_table', 1), (41, '2026_01_06_163920_create_quiz_attempts_table', 1), (42, '2026_01_06_163947_add_completion_to_enrollments', 1), (43, '2026_01_06_211355_create_activity_completions_table', 1), (44, '2026_01_07_124205_create_competencies_table', 1), (45, '2026_01_07_124207_create_competency_course_table', 1), (46, '2026_01_07_124209_create_student_competency_progress_table', 1), (47, '2026_01_16_180013_add_progress_tracking_to_enrollments', 1), (48, '2026_01_28_024117_add_approval_status_to_payments_table', 1), (49, '2026_01_28_155323_add_registration_end_date_to_semesters_table', 1), (50, '2026_02_04_073159_add_approved_at_to_attendance_excuses_table', 1), (51, '2026_02_08_090458_create_announcement_acknowledgments_table', 1), (52, '2026_02_11_230000_add_reported_by_to_medical_records_table', 1), (53, '2026_02_11_233000_create_notes_table', 2), (54, '2026_02_11_233001_create_todos_table', 2), (55, '2026_02_11_233002_create_calendar_events_table', 2), (56, '2026_02_11_233003_create_kanban_boards_table', 3), (57, '2026_01_15_120000_add_accent_color_to_accessibility_settings', 4), (58, '2026_01_15_120001_add_bg_color_to_accessibility_settings', 5), (59, '2026_01_15_120002_add_font_family_to_accessibility_settings', 5), (60, '2026_02_14_021813_add_new_accessibility_fields', 6), (61, '2026_02_15_221929_add_fields_to_announcements_table', 7); -- -------------------------------------------------------- -- -- Table structure for table `notes` -- CREATE TABLE `notes` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `content` text DEFAULT NULL, `color` varchar(255) NOT NULL DEFAULT '#fbbf24', `is_pinned` tinyint(1) NOT NULL DEFAULT 0, `is_archived` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notes` -- INSERT INTO `notes` (`id`, `user_id`, `title`, `content`, `color`, `is_pinned`, `is_archived`, `created_at`, `updated_at`) VALUES (1, 2, 'gug', 'vhvh', '#dc3545', 0, 0, '2026-02-14 17:16:12', '2026-02-14 17:16:12'), (2, 2, 'cxgnjjjj', 'dhgtnkjn', '#ffc107', 1, 0, '2026-02-14 17:23:20', '2026-02-14 21:13:28'), (4, 2, 'knk', 'bihb', '#dc3545', 0, 1, '2026-02-14 21:13:01', '2026-02-14 21:13:44'); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `type` varchar(100) NOT NULL, `title_en` varchar(255) NOT NULL, `title_ar` varchar(255) NOT NULL, `message_en` text DEFAULT NULL, `message_ar` text DEFAULT NULL, `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`data`)), `is_read` tinyint(1) NOT NULL DEFAULT 0, `read_at` timestamp NULL DEFAULT NULL, `is_dismissed` tinyint(1) NOT NULL DEFAULT 0, `sent_at` timestamp NOT NULL DEFAULT current_timestamp(), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_reset_tokens` -- CREATE TABLE `password_reset_tokens` ( `email` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payments` -- CREATE TABLE `payments` ( `id` bigint(20) UNSIGNED NOT NULL, `student_id` bigint(20) UNSIGNED NOT NULL, `fee_structure_id` bigint(20) UNSIGNED DEFAULT NULL, `amount` decimal(12,2) NOT NULL, `status` enum('pending','paid','failed','refunded','partial') NOT NULL, `approval_status` enum('pending','approved','rejected') NOT NULL DEFAULT 'pending', `payment_method` varchar(50) DEFAULT NULL, `transaction_id` varchar(255) DEFAULT NULL, `paid_at` timestamp NULL DEFAULT NULL, `notes` text DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_by` bigint(20) UNSIGNED DEFAULT NULL, `approved_at` timestamp NULL DEFAULT NULL, `admin_notes` text DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `payments` -- INSERT INTO `payments` (`id`, `student_id`, `fee_structure_id`, `amount`, `status`, `approval_status`, `payment_method`, `transaction_id`, `paid_at`, `notes`, `deleted_at`, `created_at`, `updated_at`, `approved_by`, `approved_at`, `admin_notes`) VALUES (1, 10, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-10', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (2, 11, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-11', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (3, 12, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-12', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (4, 13, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-13', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (5, 14, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-14', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (6, 15, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-15', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (7, 16, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-16', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (8, 17, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-17', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (9, 18, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-18', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (10, 19, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-19', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (11, 20, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-20', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (12, 21, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-21', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (13, 22, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-22', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (14, 23, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-23', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (15, 24, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-24', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (16, 25, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-25', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (17, 26, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-26', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (18, 27, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853104-27', '2026-02-11 20:38:24', 'Seed payment for testing', NULL, '2026-02-11 20:38:24', '2026-02-11 20:38:24', NULL, NULL, NULL), (19, 28, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853105-28', '2026-02-11 20:38:25', 'Seed payment for testing', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL, NULL, NULL), (20, 29, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853105-29', '2026-02-11 20:38:25', 'Seed payment for testing', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL, NULL, NULL), (21, 30, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853105-30', '2026-02-11 20:38:25', 'Seed payment for testing', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL, NULL, NULL), (22, 31, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853105-31', '2026-02-11 20:38:25', 'Seed payment for testing', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL, NULL, NULL), (23, 32, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853105-32', '2026-02-11 20:38:25', 'Seed payment for testing', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL, NULL, NULL), (24, 33, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853105-33', '2026-02-11 20:38:25', 'Seed payment for testing', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL, NULL, NULL), (25, 34, 5, 200.00, 'paid', 'pending', 'manual', 'TX-1770853105-34', '2026-02-11 20:38:25', 'Seed payment for testing', NULL, '2026-02-11 20:38:25', '2026-02-11 20:38:25', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `productivity_boards` -- CREATE TABLE `productivity_boards` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `description` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `productivity_boards` -- INSERT INTO `productivity_boards` (`id`, `user_id`, `name`, `description`, `created_at`, `updated_at`) VALUES (1, 2, 'My Board', NULL, '2026-02-14 17:30:22', '2026-02-14 17:30:22'); -- -------------------------------------------------------- -- -- Table structure for table `productivity_columns` -- CREATE TABLE `productivity_columns` ( `id` bigint(20) UNSIGNED NOT NULL, `board_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `color` varchar(255) NOT NULL DEFAULT '#6b7280', `position` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `productivity_columns` -- INSERT INTO `productivity_columns` (`id`, `board_id`, `name`, `color`, `position`, `created_at`, `updated_at`) VALUES (1, 1, 'To Do', '#ef4444', 0, '2026-02-14 17:30:22', '2026-02-14 17:30:22'), (2, 1, 'In Progress', '#f59e0b', 1, '2026-02-14 17:30:22', '2026-02-14 17:30:22'), (3, 1, 'Review', '#3b82f6', 2, '2026-02-14 17:30:22', '2026-02-14 17:30:22'), (4, 1, 'Done', '#22c55e', 3, '2026-02-14 17:30:22', '2026-02-14 17:30:22'); -- -------------------------------------------------------- -- -- Table structure for table `productivity_tasks` -- CREATE TABLE `productivity_tasks` ( `id` bigint(20) UNSIGNED NOT NULL, `column_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `description` text DEFAULT NULL, `position` int(11) NOT NULL DEFAULT 0, `due_date` date DEFAULT NULL, `priority` enum('low','medium','high','urgent') NOT NULL DEFAULT 'medium', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `questions` -- CREATE TABLE `questions` ( `id` bigint(20) UNSIGNED NOT NULL, `assessment_id` bigint(20) UNSIGNED NOT NULL, `type` enum('multiple_choice','true_false','short_answer','matching','fill_in_blank') NOT NULL, `question_text_en` text NOT NULL, `question_text_ar` text NOT NULL, `points` decimal(5,2) NOT NULL DEFAULT 1.00, `sort_order` int(11) NOT NULL DEFAULT 0, `answer_key` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `questions` -- INSERT INTO `questions` (`id`, `assessment_id`, `type`, `question_text_en`, `question_text_ar`, `points`, `sort_order`, `answer_key`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 'multiple_choice', 'jjjgggggg', 'tttt', 1.00, 1, NULL, '2026-02-15 22:35:02', '2026-02-15 22:35:02', NULL); -- -------------------------------------------------------- -- -- Table structure for table `question_options` -- CREATE TABLE `question_options` ( `id` bigint(20) UNSIGNED NOT NULL, `question_id` bigint(20) UNSIGNED NOT NULL, `option_text_en` text NOT NULL, `option_text_ar` text NOT NULL, `is_correct` tinyint(1) NOT NULL DEFAULT 0, `sort_order` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `question_options` -- INSERT INTO `question_options` (`id`, `question_id`, `option_text_en`, `option_text_ar`, `is_correct`, `sort_order`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 'Option A', 'خيار أ', 1, 0, '2026-02-15 22:35:02', '2026-02-15 22:35:02', NULL), (2, 1, 'Option B', 'خيار ب', 0, 1, '2026-02-15 22:35:02', '2026-02-15 22:35:02', NULL); -- -------------------------------------------------------- -- -- Table structure for table `quiz_attempts` -- CREATE TABLE `quiz_attempts` ( `id` bigint(20) UNSIGNED NOT NULL, `assessment_id` bigint(20) UNSIGNED NOT NULL, `student_id` bigint(20) UNSIGNED NOT NULL, `started_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `submitted_at` timestamp NULL DEFAULT NULL, `answers` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`answers`)), `score` decimal(5,2) DEFAULT NULL, `attempt_number` int(11) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `semesters` -- CREATE TABLE `semesters` ( `id` bigint(20) UNSIGNED NOT NULL, `academic_year_id` bigint(20) UNSIGNED NOT NULL, `name_en` varchar(50) NOT NULL, `name_ar` varchar(50) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `registration_end_date` date DEFAULT NULL, `sequence` tinyint(3) UNSIGNED NOT NULL DEFAULT 1, `is_current` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 0, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `semesters` -- INSERT INTO `semesters` (`id`, `academic_year_id`, `name_en`, `name_ar`, `start_date`, `end_date`, `registration_end_date`, `sequence`, `is_current`, `created_at`, `updated_at`, `is_active`, `deleted_at`) VALUES (1, 2, 'Fall 2025', 'الفصل الأول 2025', '2025-09-01', '2025-12-20', NULL, 1, 1, '2026-02-11 20:38:19', '2026-02-11 20:38:19', 0, NULL), (2, 2, 'Spring 2026', 'الفصل الثاني 2026', '2026-01-15', '2026-05-30', NULL, 2, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', 0, NULL), (3, 2, 'Summer 2026', 'الفصل الصيفي 2026', '2026-06-15', '2026-08-15', NULL, 3, 0, '2026-02-11 20:38:19', '2026-02-11 20:38:19', 0, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sessions` -- CREATE TABLE `sessions` ( `id` varchar(255) NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `ip_address` varchar(45) DEFAULT NULL, `user_agent` text DEFAULT NULL, `payload` longtext NOT NULL, `last_activity` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `sessions` -- INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES ('ukMqBbQVP2Hzorq9QbJ01JzOigygFgivJQ33ObZL', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', 'YTo0OntzOjM6ImRpciI7czozOiJsdHIiO3M6NjoiX3Rva2VuIjtzOjQwOiJRNFI1NzJzaGhOU1RpWG1zNVA1YVBzSnJ0QXlyMjMwbFVYMkdwVkZqIjtzOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX1zOjk6Il9wcmV2aW91cyI7YToyOntzOjM6InVybCI7czoyNzoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2xvZ2luIjtzOjU6InJvdXRlIjtzOjU6ImxvZ2luIjt9fQ==', 1771252904); -- -------------------------------------------------------- -- -- Table structure for table `settings` -- CREATE TABLE `settings` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(100) NOT NULL, `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`value`)), `description_en` text DEFAULT NULL, `description_ar` text DEFAULT NULL, `type` enum('string','boolean','integer','json','text') NOT NULL DEFAULT 'string', `is_public` tinyint(1) NOT NULL DEFAULT 0, `is_editable` tinyint(1) NOT NULL DEFAULT 1, `updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(), `updated_by` bigint(20) UNSIGNED DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `settings` -- INSERT INTO `settings` (`id`, `key`, `value`, `description_en`, `description_ar`, `type`, `is_public`, `is_editable`, `updated_at`, `updated_by`, `deleted_at`) VALUES (1, 'app_name', '\"University LMS\"', NULL, NULL, 'string', 0, 1, NULL, NULL, NULL), (2, 'academic_year_start_month', '9', NULL, NULL, 'string', 0, 1, NULL, NULL, NULL), (3, 'enrollment_period_start', '\"2025-08-01\"', NULL, NULL, 'string', 0, 1, NULL, NULL, NULL), (4, 'enrollment_period_end', '\"2025-09-15\"', NULL, NULL, 'string', 0, 1, NULL, NULL, NULL), (5, 'default_locale', '\"en\"', NULL, NULL, 'string', 0, 1, NULL, NULL, NULL), (6, 'maintenance_mode', 'false', NULL, NULL, 'string', 0, 1, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `student_competency_progress` -- CREATE TABLE `student_competency_progress` ( `id` bigint(20) UNSIGNED NOT NULL, `student_id` bigint(20) UNSIGNED NOT NULL, `competency_id` bigint(20) UNSIGNED NOT NULL, `mastery_level` enum('not_started','developing','proficient','exemplary') NOT NULL DEFAULT 'not_started', `evidence_score` decimal(5,2) DEFAULT NULL, `notes` text DEFAULT NULL, `last_assessed_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `student_profiles` -- CREATE TABLE `student_profiles` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `major_id` bigint(20) UNSIGNED DEFAULT NULL, `student_id_number` varchar(50) DEFAULT NULL, `enrollment_year` year(4) NOT NULL, `status` enum('active','graduated','suspended','withdrawn','leave_of_absence') NOT NULL DEFAULT 'active', `graduation_date` date DEFAULT NULL, `blood_type` varchar(5) DEFAULT NULL, `emergency_contact_name` varchar(255) DEFAULT NULL, `emergency_contact_phone` varchar(20) DEFAULT NULL, `emergency_contact_relation` varchar(255) DEFAULT NULL, `current_gpa` decimal(3,2) DEFAULT NULL, `earned_credits` int(10) UNSIGNED NOT NULL DEFAULT 0, `attempted_credits` int(10) UNSIGNED NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `student_profiles` -- INSERT INTO `student_profiles` (`id`, `user_id`, `major_id`, `student_id_number`, `enrollment_year`, `status`, `graduation_date`, `blood_type`, `emergency_contact_name`, `emergency_contact_phone`, `emergency_contact_relation`, `current_gpa`, `earned_credits`, `attempted_credits`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 10, 1, 'S000010', '2025', 'active', NULL, NULL, NULL, NULL, NULL, 3.51, 101, 0, '2026-02-11 20:38:21', '2026-02-11 20:38:21', NULL), (2, 11, 1, 'S000011', '2025', 'active', NULL, NULL, NULL, NULL, NULL, 3.37, 102, 0, '2026-02-11 20:38:21', '2026-02-11 20:38:21', NULL), (3, 12, 3, 'S000012', '2025', 'active', NULL, NULL, NULL, NULL, NULL, 2.79, 90, 0, '2026-02-11 20:38:21', '2026-02-11 20:38:21', NULL), (4, 13, 4, 'S000013', '2025', 'active', NULL, NULL, NULL, NULL, NULL, 2.71, 47, 0, '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (5, 14, 1, 'S000014', '2025', 'active', NULL, NULL, NULL, NULL, NULL, 2.57, 104, 0, '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (6, 15, 2, 'S026501', '2026', 'active', NULL, 'O+', 'Dr. Weston Steuber', '+1.775.458.5937', NULL, 3.74, 84, 130, '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (7, 16, 4, 'S022429', '2026', 'active', NULL, 'B+', 'Dr. Myrtie Larkin DDS', '+1 (907) 588-8141', NULL, 3.45, 116, 34, '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (8, 17, 1, 'S023629', '2026', 'active', NULL, 'O+', 'Ms. Flo Mayert', '270-468-5139', NULL, 3.17, 63, 64, '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (9, 18, 1, 'S028718', '2026', 'active', NULL, 'AB+', 'Ivy Torp', '(832) 975-2232', NULL, 2.70, 9, 25, '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (10, 19, 3, 'S023772', '2026', 'active', NULL, 'A-', 'Mr. Cole Lynch', '(878) 680-6049', NULL, 2.95, 84, 29, '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (11, 20, 4, 'S022155', '2026', 'active', NULL, 'B-', 'Justen Reichel III', '(906) 387-6315', NULL, 3.61, 83, 21, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (12, 21, 5, 'S033453', '2026', 'active', NULL, 'AB+', 'Beth Grimes II', '1-325-719-0108', NULL, 3.95, 26, 120, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (13, 22, 2, 'S032460', '2026', 'active', NULL, 'O-', 'Miss Kailey Collins DVM', '+17078942335', NULL, 2.63, 5, 116, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (14, 23, 5, 'S031364', '2026', 'active', NULL, 'A+', 'Keagan Smith', '+1-458-946-6561', NULL, 2.52, 46, 141, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (15, 24, 2, 'S032770', '2026', 'active', NULL, 'B+', 'Lexi Streich', '848.640.7985', NULL, 2.37, 29, 14, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (16, 25, 4, 'S037634', '2026', 'active', NULL, 'O-', 'Prof. Roger Dietrich', '231-870-5951', NULL, 3.38, 93, 44, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (17, 26, 4, 'S037796', '2026', 'active', NULL, 'O-', 'Miss Esmeralda Watsica MD', '234-904-7744', NULL, 4.00, 19, 147, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (18, 27, 2, 'S031660', '2026', 'active', NULL, 'A-', 'Minerva Trantow', '1-223-505-2235', NULL, 2.87, 106, 100, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (19, 28, 5, 'S035478', '2026', 'active', NULL, 'O+', 'Oren Dietrich', '+19257919105', NULL, 2.86, 104, 129, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (20, 29, 1, 'S031737', '2026', 'active', NULL, 'B-', 'Albina Kerluke MD', '(847) 478-8749', NULL, 3.65, 47, 144, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (21, 30, 3, 'S039234', '2026', 'active', NULL, 'A-', 'Hilda Schaefer', '409.728.4812', NULL, 4.00, 101, 13, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (22, 31, 4, 'S038183', '2026', 'active', NULL, 'A-', 'Walker Hilpert Jr.', '(352) 600-3677', NULL, 2.30, 17, 141, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (23, 32, 1, 'S036287', '2026', 'active', NULL, 'A-', 'Deonte Lynch', '470.727.0733', NULL, 3.51, 75, 110, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (24, 33, 3, 'S034590', '2026', 'active', NULL, 'O+', 'Felicity Feest', '+1 (224) 216-3801', NULL, 3.97, 41, 120, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (25, 34, 5, 'S035582', '2026', 'active', NULL, 'B+', 'Mercedes Barton', '1-413-219-4277', NULL, 2.98, 75, 113, '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL); -- -------------------------------------------------------- -- -- Table structure for table `teacher_profiles` -- CREATE TABLE `teacher_profiles` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `department_id` bigint(20) UNSIGNED DEFAULT NULL, `title` varchar(100) DEFAULT NULL, `hire_date` date DEFAULT NULL, `resignation_date` date DEFAULT NULL, `bio_en` text DEFAULT NULL, `bio_ar` text DEFAULT NULL, `office_location` varchar(255) DEFAULT NULL, `office_hours` varchar(255) DEFAULT NULL, `employment_type` enum('full_time','part_time','adjunct','visiting') NOT NULL DEFAULT 'full_time', `is_active` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `teacher_profiles` -- INSERT INTO `teacher_profiles` (`id`, `user_id`, `department_id`, `title`, `hire_date`, `resignation_date`, `bio_en`, `bio_ar`, `office_location`, `office_hours`, `employment_type`, `is_active`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 5, 1, 'Dr.', '2017-02-11', NULL, NULL, NULL, NULL, NULL, 'full_time', 1, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (2, 6, 1, 'Dr.', '2016-02-11', NULL, NULL, NULL, NULL, NULL, 'full_time', 1, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (3, 7, 2, 'Dr.', '2024-02-11', NULL, NULL, NULL, NULL, NULL, 'full_time', 1, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (4, 8, 4, 'Dr.', '2016-02-11', NULL, NULL, NULL, NULL, NULL, 'full_time', 1, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (5, 9, 1, 'Dr.', '2019-02-11', NULL, NULL, NULL, NULL, NULL, 'full_time', 1, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL); -- -------------------------------------------------------- -- -- Table structure for table `todos` -- CREATE TABLE `todos` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `description` text DEFAULT NULL, `status` enum('pending','in_progress','completed') NOT NULL DEFAULT 'pending', `priority` enum('low','medium','high','urgent') NOT NULL DEFAULT 'medium', `due_date` date DEFAULT NULL, `is_archived` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `todos` -- INSERT INTO `todos` (`id`, `user_id`, `title`, `description`, `status`, `priority`, `due_date`, `is_archived`, `created_at`, `updated_at`) VALUES (1, 2, 'kk', 'bjbb', 'pending', 'medium', NULL, 0, '2026-02-14 21:28:13', '2026-02-14 21:28:13'), (2, 2, 'fg', 'fdg', 'pending', 'medium', '2026-02-19', 0, '2026-02-14 21:29:35', '2026-02-14 21:29:35'), (3, 2, 'dfg', 'dfg', 'pending', 'low', NULL, 0, '2026-02-14 21:29:50', '2026-02-14 21:29:50'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) NOT NULL, `locale` enum('en','ar') NOT NULL DEFAULT 'en', `role` enum('admin','teacher','student') NOT NULL DEFAULT 'student', `status` enum('active','inactive','suspended') NOT NULL DEFAULT 'active', `is_online` tinyint(1) NOT NULL DEFAULT 0, `last_login_at` timestamp NULL DEFAULT NULL, `last_login_ip` varchar(45) DEFAULT NULL, `remember_token` varchar(100) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `locale`, `role`, `status`, `is_online`, `last_login_at`, `last_login_ip`, `remember_token`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'Admin User', 'admin@example.com', NULL, '$2y$12$J1Ua199T1U4kdtpT9N4F/e6Ow/9gn1CpYh3YA2vXldBfo5gOiFMni', 'ar', 'admin', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:18', '2026-02-12 14:36:18', NULL), (2, 'Teacher One', 'teacher@example.com', NULL, '$2y$12$AAXau858usHc5mIRAoSSOuYiXSNBx.Hc6pqWmoSfMMiqQek5OFtsS', 'en', 'teacher', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:18', '2026-02-11 20:38:18', NULL), (3, 'Super Administrator', 'admin@lms.com', '2026-02-11 20:38:18', '$2y$12$Joi7rrIdV6SZKBNo1M3IcubxgGPcBir3YIGzGX6XDZgxyX11TjvmK', 'en', 'admin', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:18', '2026-02-11 20:38:18', NULL), (4, 'Academic Admin', 'admin2@lms.com', '2026-02-11 20:38:19', '$2y$12$og3VC2lnp2a5slF6InOpeuL545rwGV5zupA6EvrVzWKwp7Cj1t/u6', 'ar', 'admin', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (5, 'Dr. Fatima Ahmed', 'fatima.ahmed@university.com', '2026-02-11 20:38:19', '$2y$12$e0sORyWUvpqhs0VFCWGfe.C4b1LnRk5RXx7FC42CGxwL3DZE10iCe', 'en', 'teacher', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (6, 'Prof. Khalid Hassan', 'khalid.hassan@university.com', '2026-02-11 20:38:19', '$2y$12$6EkqEvIr3K5vHnZovK.K/.L3Vum7gnhh.jzcWZ/5deItiA5407PGO', 'en', 'teacher', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:19', '2026-02-11 20:38:19', NULL), (7, 'Dr. Layla Mahmoud', 'layla.mahmoud@university.com', '2026-02-11 20:38:20', '$2y$12$rkceWL2QWXsmQ7AzElLXf.uYBc1NWD5BWZfI0ckPU.mifWQCgtRKK', 'en', 'teacher', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (8, 'Prof. Omar Saleh', 'omar.saleh@university.com', '2026-02-11 20:38:20', '$2y$12$tP.bvN5NTTdwc6DGN8LIdedhT2NZbEdpIZwSFO6yYW4MnBuMo2liy', 'en', 'teacher', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (9, 'Dr. Noor Ali', 'noor.ali@university.com', '2026-02-11 20:38:20', '$2y$12$UPNcOnS1w93hwvPXsk9tLuV9lSrpH1j2usBeXDtV0JvGQz5C/hZI2', 'en', 'teacher', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:20', '2026-02-11 20:38:20', NULL), (10, 'Ali Mohammed', 'ali@student.com', '2026-02-11 20:38:21', '$2y$12$czMjSx0iSnBJJl5UQmJvkeEiDVlkzAoNSxyQLUZUSgTMacbeI/Hh6', 'en', 'student', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:21', '2026-02-11 20:38:21', NULL), (11, 'Sara Khalid', 'sara@student.com', '2026-02-11 20:38:21', '$2y$12$DTdKl0EuBX4HPZuNogzRguf6rIyPGagTGLuqWUnOsl1btlYhiE2da', 'en', 'student', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:21', '2026-02-11 20:38:21', NULL), (12, 'Omar Hassan', 'omar@student.com', '2026-02-11 20:38:21', '$2y$12$6ieD9eDvmPe2m0QgXg3tfOjvzl0n7diGpolU6g62OeKOLPEsXkgWG', 'en', 'student', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:21', '2026-02-11 20:38:21', NULL), (13, 'Lina Ahmed', 'lina@student.com', '2026-02-11 20:38:22', '$2y$12$RJoDX4vZ.3aGpsKnBHIBAupSEL5Qg5s8VgG.4hobeW/ISpntS.w.O', 'en', 'student', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (14, 'Yousef Salem', 'yousef@student.com', '2026-02-11 20:38:22', '$2y$12$AOtQPW27brrd.LX/pql8yOFAiGrnawnYbEvbOlGKw5WF.gUdPERL6', 'en', 'student', 'active', 0, NULL, NULL, NULL, '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (15, 'Miss Araceli Dickinson V', 'astrid.stiedemann@example.com', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'lj6Vvjd602', '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (16, 'Ms. Jeanne Lakin PhD', 'guiseppe.daugherty@example.org', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'LyKxLe00mO', '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (17, 'Tyrell West', 'erwin.legros@example.org', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'zI6ehFJWh4', '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (18, 'Prof. Toni Gerlach I', 'deanna48@example.net', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'ms5VYPRovK', '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (19, 'Miss Maurine Toy DDS', 'orval34@example.org', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'pjeupRL2mB', '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (20, 'Xzavier Orn', 'emerald24@example.org', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'xXPM6aAOBX', '2026-02-11 20:38:22', '2026-02-11 20:38:22', NULL), (21, 'Dorothy Greenfelder', 'cicero.littel@example.net', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'inactive', 0, NULL, NULL, 'vXsy856oRl', '2026-02-11 20:38:23', '2026-02-15 17:26:19', NULL), (22, 'Anita Runolfsdottir III', 'jsimonis@example.org', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, '1drKkkKlA1', '2026-02-11 20:38:23', '2026-02-12 19:39:31', NULL), (23, 'Dr. Wendell Yost', 'brionna83@example.org', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'rzko3xnF8g', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (24, 'Prince Pacocha', 'peter.beer@example.org', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'XX2vsM9Aik', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (25, 'Larry Hoeger II', 'casper.elouise@example.com', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'd0DuV5vpNS', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (26, 'Diego Goyette', 'beier.erica@example.net', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'YqsrXoZhnB', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (27, 'Oran Barrows', 'alvis.heidenreich@example.com', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'mfKYDbwpsv', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (28, 'Vesta Muller', 'hilbert.trantow@example.com', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'stHEGlN7IT', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (29, 'Augustus Haley', 'gusikowski.kirsten@example.org', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'lhb1Wnnhqf', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (30, 'Mallie Osinski', 'chadrick80@example.net', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'miwxH5GzoK', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (31, 'Raymond Thompson', 'horeilly@example.com', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'WfXkrzUSzB', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (32, 'Claud Borer', 'roxane.kuhic@example.com', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'SAeXaQYceB', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (33, 'Reinhold Klein Sr.', 'omueller@example.com', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'nHKZUw174C', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL), (34, 'Alexis Boyer', 'brayan47@example.org', '2026-02-11 20:38:22', '$2y$12$tvYZq83e/awQcY/lcOgQO.uylzoLjwLVYBSf3uIzV/rzFxEKU0ArO', 'en', 'student', 'active', 0, NULL, NULL, 'yi4ZG1nVPb', '2026-02-11 20:38:23', '2026-02-11 20:38:23', NULL); -- -------------------------------------------------------- -- -- Table structure for table `user_profiles` -- CREATE TABLE `user_profiles` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `first_name_en` varchar(255) DEFAULT NULL, `first_name_ar` varchar(255) DEFAULT NULL, `last_name_en` varchar(255) DEFAULT NULL, `last_name_ar` varchar(255) DEFAULT NULL, `phone` varchar(20) DEFAULT NULL, `mobile` varchar(20) DEFAULT NULL, `address` text DEFAULT NULL, `city` varchar(255) DEFAULT NULL, `country` varchar(100) DEFAULT NULL, `postal_code` varchar(255) DEFAULT NULL, `photo_path` varchar(255) DEFAULT NULL, `date_of_birth` date DEFAULT NULL, `gender` enum('male','female','other','prefer_not_to_say') DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `absence_reason_codes` -- ALTER TABLE `absence_reason_codes` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `absence_reason_codes_code_unique` (`code`); -- -- Indexes for table `academic_years` -- ALTER TABLE `academic_years` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `academic_years_year_label_en_unique` (`year_label_en`); -- -- Indexes for table `accessibility_settings` -- ALTER TABLE `accessibility_settings` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `accessibility_settings_user_id_unique` (`user_id`); -- -- Indexes for table `activity_completions` -- ALTER TABLE `activity_completions` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `activity_comp_enrollment_activity_unique` (`enrollment_id`,`activity_type`,`activity_id`), ADD KEY `activity_completions_activity_type_activity_id_index` (`activity_type`,`activity_id`); -- -- Indexes for table `activity_logs` -- ALTER TABLE `activity_logs` ADD PRIMARY KEY (`id`), ADD KEY `activity_logs_user_id_occurred_at_index` (`user_id`,`occurred_at`), ADD KEY `activity_logs_action_index` (`action`), ADD KEY `activity_logs_category_index` (`category`); -- -- Indexes for table `announcements` -- ALTER TABLE `announcements` ADD PRIMARY KEY (`id`), ADD KEY `announcements_created_by_foreign` (`created_by`); -- -- Indexes for table `announcement_acknowledgments` -- ALTER TABLE `announcement_acknowledgments` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `announcement_acknowledgments_announcement_id_user_id_unique` (`announcement_id`,`user_id`), ADD KEY `announcement_acknowledgments_user_id_foreign` (`user_id`); -- -- Indexes for table `assessments` -- ALTER TABLE `assessments` ADD PRIMARY KEY (`id`), ADD KEY `assessments_course_offering_id_foreign` (`course_offering_id`), ADD KEY `assessments_assessment_type_id_foreign` (`assessment_type_id`); -- -- Indexes for table `assessment_types` -- ALTER TABLE `assessment_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attendances` -- ALTER TABLE `attendances` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `attendances_enrollment_id_date_unique` (`enrollment_id`,`date`); -- -- Indexes for table `attendance_excuses` -- ALTER TABLE `attendance_excuses` ADD PRIMARY KEY (`id`), ADD KEY `attendance_excuses_attendance_id_foreign` (`attendance_id`), ADD KEY `attendance_excuses_reason_code_id_foreign` (`reason_code_id`), ADD KEY `attendance_excuses_reviewed_by_foreign` (`reviewed_by`); -- -- Indexes for table `cache` -- ALTER TABLE `cache` ADD PRIMARY KEY (`key`); -- -- Indexes for table `cache_locks` -- ALTER TABLE `cache_locks` ADD PRIMARY KEY (`key`); -- -- Indexes for table `calendar_events` -- ALTER TABLE `calendar_events` ADD PRIMARY KEY (`id`), ADD KEY `calendar_events_user_id_foreign` (`user_id`), ADD KEY `calendar_events_course_offering_id_foreign` (`course_offering_id`), ADD KEY `calendar_events_assessment_id_foreign` (`assessment_id`); -- -- Indexes for table `competencies` -- ALTER TABLE `competencies` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `competencies_code_unique` (`code`); -- -- Indexes for table `competency_course` -- ALTER TABLE `competency_course` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `competency_course_competency_id_course_id_unique` (`competency_id`,`course_id`), ADD KEY `competency_course_course_id_foreign` (`course_id`); -- -- Indexes for table `conversations` -- ALTER TABLE `conversations` ADD PRIMARY KEY (`id`), ADD KEY `conversations_course_offering_id_foreign` (`course_offering_id`), ADD KEY `conversations_created_by_foreign` (`created_by`), ADD KEY `conversations_type_course_offering_id_index` (`type`,`course_offering_id`); -- -- Indexes for table `conversation_participants` -- ALTER TABLE `conversation_participants` ADD PRIMARY KEY (`conversation_id`,`user_id`), ADD KEY `conversation_participants_user_id_foreign` (`user_id`), ADD KEY `conversation_participants_last_read_at_index` (`last_read_at`); -- -- Indexes for table `courses` -- ALTER TABLE `courses` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `courses_code_unique` (`code`), ADD KEY `courses_department_id_foreign` (`department_id`); -- -- Indexes for table `course_materials` -- ALTER TABLE `course_materials` ADD PRIMARY KEY (`id`), ADD KEY `course_materials_course_offering_id_foreign` (`course_offering_id`), ADD KEY `course_materials_uploaded_by_foreign` (`uploaded_by`); -- -- Indexes for table `course_offerings` -- ALTER TABLE `course_offerings` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `course_offerings_course_id_semester_id_section_name_unique` (`course_id`,`semester_id`,`section_name`), ADD KEY `course_offerings_semester_id_foreign` (`semester_id`), ADD KEY `course_offerings_teacher_id_foreign` (`teacher_id`); -- -- Indexes for table `course_prerequisites` -- ALTER TABLE `course_prerequisites` ADD PRIMARY KEY (`course_id`,`prerequisite_course_id`), ADD KEY `course_prerequisites_prerequisite_course_id_foreign` (`prerequisite_course_id`); -- -- Indexes for table `departments` -- ALTER TABLE `departments` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `departments_faculty_id_code_unique` (`faculty_id`,`code`); -- -- Indexes for table `discussions` -- ALTER TABLE `discussions` ADD PRIMARY KEY (`id`), ADD KEY `discussions_author_id_foreign` (`author_id`), ADD KEY `discussions_course_offering_id_is_pinned_last_reply_at_index` (`course_offering_id`,`is_pinned`,`last_reply_at`), ADD KEY `discussions_parent_id_index` (`parent_id`); -- -- Indexes for table `enrollments` -- ALTER TABLE `enrollments` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `enrollments_student_id_course_offering_id_unique` (`student_id`,`course_offering_id`), ADD KEY `enrollments_course_offering_id_foreign` (`course_offering_id`); -- -- Indexes for table `faculties` -- ALTER TABLE `faculties` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `faculties_code_unique` (`code`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `fee_structures` -- ALTER TABLE `fee_structures` ADD PRIMARY KEY (`id`), ADD KEY `fee_structures_academic_year_id_foreign` (`academic_year_id`), ADD KEY `fee_structures_major_id_foreign` (`major_id`), ADD KEY `fee_structures_semester_id_foreign` (`semester_id`); -- -- Indexes for table `grade_appeals` -- ALTER TABLE `grade_appeals` ADD PRIMARY KEY (`id`), ADD KEY `grade_appeals_mark_id_foreign` (`mark_id`), ADD KEY `grade_appeals_responded_by_foreign` (`responded_by`); -- -- Indexes for table `grade_components` -- ALTER TABLE `grade_components` ADD PRIMARY KEY (`id`), ADD KEY `grade_components_course_offering_id_foreign` (`course_offering_id`); -- -- Indexes for table `grade_locks` -- ALTER TABLE `grade_locks` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `grade_locks_course_offering_id_unique` (`course_offering_id`), ADD KEY `grade_locks_locked_by_foreign` (`locked_by`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `job_batches` -- ALTER TABLE `job_batches` ADD PRIMARY KEY (`id`); -- -- Indexes for table `kanban_boards` -- ALTER TABLE `kanban_boards` ADD PRIMARY KEY (`id`), ADD KEY `kanban_boards_user_id_foreign` (`user_id`); -- -- Indexes for table `kanban_columns` -- ALTER TABLE `kanban_columns` ADD PRIMARY KEY (`id`); -- -- Indexes for table `majors` -- ALTER TABLE `majors` ADD PRIMARY KEY (`id`), ADD KEY `majors_department_id_foreign` (`department_id`); -- -- Indexes for table `marks` -- ALTER TABLE `marks` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `marks_enrollment_id_assessment_id_unique` (`enrollment_id`,`assessment_id`), ADD KEY `marks_assessment_id_foreign` (`assessment_id`), ADD KEY `marks_graded_by_foreign` (`graded_by`); -- -- Indexes for table `medical_records` -- ALTER TABLE `medical_records` ADD PRIMARY KEY (`id`), ADD KEY `medical_records_student_id_foreign` (`student_id`), ADD KEY `medical_records_reported_by_foreign` (`reported_by`); -- -- Indexes for table `messages` -- ALTER TABLE `messages` ADD PRIMARY KEY (`id`), ADD KEY `messages_conversation_id_sent_at_index` (`conversation_id`,`sent_at`), ADD KEY `messages_sender_id_index` (`sender_id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notes` -- ALTER TABLE `notes` ADD PRIMARY KEY (`id`), ADD KEY `notes_user_id_foreign` (`user_id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`), ADD KEY `notifications_user_id_is_read_sent_at_index` (`user_id`,`is_read`,`sent_at`), ADD KEY `notifications_type_index` (`type`); -- -- Indexes for table `password_reset_tokens` -- ALTER TABLE `password_reset_tokens` ADD PRIMARY KEY (`email`); -- -- Indexes for table `payments` -- ALTER TABLE `payments` ADD PRIMARY KEY (`id`), ADD KEY `payments_student_id_foreign` (`student_id`), ADD KEY `payments_fee_structure_id_foreign` (`fee_structure_id`), ADD KEY `payments_approved_by_foreign` (`approved_by`); -- -- Indexes for table `productivity_boards` -- ALTER TABLE `productivity_boards` ADD PRIMARY KEY (`id`), ADD KEY `productivity_boards_user_id_foreign` (`user_id`); -- -- Indexes for table `productivity_columns` -- ALTER TABLE `productivity_columns` ADD PRIMARY KEY (`id`), ADD KEY `productivity_columns_board_id_foreign` (`board_id`); -- -- Indexes for table `productivity_tasks` -- ALTER TABLE `productivity_tasks` ADD PRIMARY KEY (`id`), ADD KEY `productivity_tasks_column_id_foreign` (`column_id`), ADD KEY `productivity_tasks_user_id_foreign` (`user_id`); -- -- Indexes for table `questions` -- ALTER TABLE `questions` ADD PRIMARY KEY (`id`), ADD KEY `questions_assessment_id_foreign` (`assessment_id`); -- -- Indexes for table `question_options` -- ALTER TABLE `question_options` ADD PRIMARY KEY (`id`), ADD KEY `question_options_question_id_foreign` (`question_id`); -- -- Indexes for table `quiz_attempts` -- ALTER TABLE `quiz_attempts` ADD PRIMARY KEY (`id`), ADD KEY `quiz_attempts_assessment_id_foreign` (`assessment_id`), ADD KEY `quiz_attempts_student_id_foreign` (`student_id`); -- -- Indexes for table `semesters` -- ALTER TABLE `semesters` ADD PRIMARY KEY (`id`), ADD KEY `semesters_academic_year_id_sequence_index` (`academic_year_id`,`sequence`); -- -- Indexes for table `sessions` -- ALTER TABLE `sessions` ADD PRIMARY KEY (`id`), ADD KEY `sessions_user_id_index` (`user_id`), ADD KEY `sessions_last_activity_index` (`last_activity`); -- -- Indexes for table `settings` -- ALTER TABLE `settings` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `settings_key_unique` (`key`), ADD KEY `settings_updated_by_foreign` (`updated_by`), ADD KEY `settings_key_index` (`key`); -- -- Indexes for table `student_competency_progress` -- ALTER TABLE `student_competency_progress` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `student_competency_progress_student_id_competency_id_unique` (`student_id`,`competency_id`), ADD KEY `student_competency_progress_competency_id_foreign` (`competency_id`); -- -- Indexes for table `student_profiles` -- ALTER TABLE `student_profiles` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `student_profiles_user_id_unique` (`user_id`), ADD UNIQUE KEY `student_profiles_student_id_number_unique` (`student_id_number`), ADD KEY `student_profiles_major_id_foreign` (`major_id`); -- -- Indexes for table `teacher_profiles` -- ALTER TABLE `teacher_profiles` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `teacher_profiles_user_id_unique` (`user_id`), ADD KEY `teacher_profiles_department_id_foreign` (`department_id`); -- -- Indexes for table `todos` -- ALTER TABLE `todos` ADD PRIMARY KEY (`id`), ADD KEY `todos_user_id_foreign` (`user_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`), ADD KEY `users_status_locale_index` (`status`,`locale`); -- -- Indexes for table `user_profiles` -- ALTER TABLE `user_profiles` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `user_profiles_user_id_unique` (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `absence_reason_codes` -- ALTER TABLE `absence_reason_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `academic_years` -- ALTER TABLE `academic_years` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `accessibility_settings` -- ALTER TABLE `accessibility_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `activity_completions` -- ALTER TABLE `activity_completions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `activity_logs` -- ALTER TABLE `activity_logs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1607; -- -- AUTO_INCREMENT for table `announcements` -- ALTER TABLE `announcements` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `announcement_acknowledgments` -- ALTER TABLE `announcement_acknowledgments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `assessments` -- ALTER TABLE `assessments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `assessment_types` -- ALTER TABLE `assessment_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `attendances` -- ALTER TABLE `attendances` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3333; -- -- AUTO_INCREMENT for table `attendance_excuses` -- ALTER TABLE `attendance_excuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `calendar_events` -- ALTER TABLE `calendar_events` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `competencies` -- ALTER TABLE `competencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `competency_course` -- ALTER TABLE `competency_course` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `conversations` -- ALTER TABLE `conversations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26; -- -- AUTO_INCREMENT for table `courses` -- ALTER TABLE `courses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `course_materials` -- ALTER TABLE `course_materials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=58; -- -- AUTO_INCREMENT for table `course_offerings` -- ALTER TABLE `course_offerings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `departments` -- ALTER TABLE `departments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `discussions` -- ALTER TABLE `discussions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=65; -- -- AUTO_INCREMENT for table `enrollments` -- ALTER TABLE `enrollments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=239; -- -- AUTO_INCREMENT for table `faculties` -- ALTER TABLE `faculties` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `fee_structures` -- ALTER TABLE `fee_structures` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `grade_appeals` -- ALTER TABLE `grade_appeals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `grade_components` -- ALTER TABLE `grade_components` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `grade_locks` -- ALTER TABLE `grade_locks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `kanban_boards` -- ALTER TABLE `kanban_boards` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `kanban_columns` -- ALTER TABLE `kanban_columns` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `majors` -- ALTER TABLE `majors` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `marks` -- ALTER TABLE `marks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `medical_records` -- ALTER TABLE `medical_records` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=56; -- -- AUTO_INCREMENT for table `messages` -- ALTER TABLE `messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=78; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT for table `notes` -- ALTER TABLE `notes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `payments` -- ALTER TABLE `payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26; -- -- AUTO_INCREMENT for table `productivity_boards` -- ALTER TABLE `productivity_boards` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `productivity_columns` -- ALTER TABLE `productivity_columns` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `productivity_tasks` -- ALTER TABLE `productivity_tasks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `questions` -- ALTER TABLE `questions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `question_options` -- ALTER TABLE `question_options` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `quiz_attempts` -- ALTER TABLE `quiz_attempts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `semesters` -- ALTER TABLE `semesters` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `settings` -- ALTER TABLE `settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `student_competency_progress` -- ALTER TABLE `student_competency_progress` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `student_profiles` -- ALTER TABLE `student_profiles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26; -- -- AUTO_INCREMENT for table `teacher_profiles` -- ALTER TABLE `teacher_profiles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `todos` -- ALTER TABLE `todos` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35; -- -- AUTO_INCREMENT for table `user_profiles` -- ALTER TABLE `user_profiles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Constraints for table `accessibility_settings` -- ALTER TABLE `accessibility_settings` ADD CONSTRAINT `accessibility_settings_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `activity_completions` -- ALTER TABLE `activity_completions` ADD CONSTRAINT `activity_completions_enrollment_id_foreign` FOREIGN KEY (`enrollment_id`) REFERENCES `enrollments` (`id`) ON DELETE CASCADE; -- -- Constraints for table `activity_logs` -- ALTER TABLE `activity_logs` ADD CONSTRAINT `activity_logs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; -- -- Constraints for table `announcements` -- ALTER TABLE `announcements` ADD CONSTRAINT `announcements_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `announcement_acknowledgments` -- ALTER TABLE `announcement_acknowledgments` ADD CONSTRAINT `announcement_acknowledgments_announcement_id_foreign` FOREIGN KEY (`announcement_id`) REFERENCES `announcements` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `announcement_acknowledgments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `assessments` -- ALTER TABLE `assessments` ADD CONSTRAINT `assessments_assessment_type_id_foreign` FOREIGN KEY (`assessment_type_id`) REFERENCES `assessment_types` (`id`), ADD CONSTRAINT `assessments_course_offering_id_foreign` FOREIGN KEY (`course_offering_id`) REFERENCES `course_offerings` (`id`) ON DELETE CASCADE; -- -- Constraints for table `attendances` -- ALTER TABLE `attendances` ADD CONSTRAINT `attendances_enrollment_id_foreign` FOREIGN KEY (`enrollment_id`) REFERENCES `enrollments` (`id`) ON DELETE CASCADE; -- -- Constraints for table `attendance_excuses` -- ALTER TABLE `attendance_excuses` ADD CONSTRAINT `attendance_excuses_attendance_id_foreign` FOREIGN KEY (`attendance_id`) REFERENCES `attendances` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `attendance_excuses_reason_code_id_foreign` FOREIGN KEY (`reason_code_id`) REFERENCES `absence_reason_codes` (`id`), ADD CONSTRAINT `attendance_excuses_reviewed_by_foreign` FOREIGN KEY (`reviewed_by`) REFERENCES `users` (`id`); -- -- Constraints for table `calendar_events` -- ALTER TABLE `calendar_events` ADD CONSTRAINT `calendar_events_assessment_id_foreign` FOREIGN KEY (`assessment_id`) REFERENCES `assessments` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `calendar_events_course_offering_id_foreign` FOREIGN KEY (`course_offering_id`) REFERENCES `course_offerings` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `calendar_events_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `competency_course` -- ALTER TABLE `competency_course` ADD CONSTRAINT `competency_course_competency_id_foreign` FOREIGN KEY (`competency_id`) REFERENCES `competencies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `competency_course_course_id_foreign` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE; -- -- Constraints for table `conversations` -- ALTER TABLE `conversations` ADD CONSTRAINT `conversations_course_offering_id_foreign` FOREIGN KEY (`course_offering_id`) REFERENCES `course_offerings` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `conversations_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `conversation_participants` -- ALTER TABLE `conversation_participants` ADD CONSTRAINT `conversation_participants_conversation_id_foreign` FOREIGN KEY (`conversation_id`) REFERENCES `conversations` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `conversation_participants_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `courses` -- ALTER TABLE `courses` ADD CONSTRAINT `courses_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE CASCADE; -- -- Constraints for table `course_materials` -- ALTER TABLE `course_materials` ADD CONSTRAINT `course_materials_course_offering_id_foreign` FOREIGN KEY (`course_offering_id`) REFERENCES `course_offerings` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `course_materials_uploaded_by_foreign` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`); -- -- Constraints for table `course_offerings` -- ALTER TABLE `course_offerings` ADD CONSTRAINT `course_offerings_course_id_foreign` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `course_offerings_semester_id_foreign` FOREIGN KEY (`semester_id`) REFERENCES `semesters` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `course_offerings_teacher_id_foreign` FOREIGN KEY (`teacher_id`) REFERENCES `users` (`id`) ON DELETE SET NULL; -- -- Constraints for table `course_prerequisites` -- ALTER TABLE `course_prerequisites` ADD CONSTRAINT `course_prerequisites_course_id_foreign` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `course_prerequisites_prerequisite_course_id_foreign` FOREIGN KEY (`prerequisite_course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE; -- -- Constraints for table `departments` -- ALTER TABLE `departments` ADD CONSTRAINT `departments_faculty_id_foreign` FOREIGN KEY (`faculty_id`) REFERENCES `faculties` (`id`) ON DELETE CASCADE; -- -- Constraints for table `discussions` -- ALTER TABLE `discussions` ADD CONSTRAINT `discussions_author_id_foreign` FOREIGN KEY (`author_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `discussions_course_offering_id_foreign` FOREIGN KEY (`course_offering_id`) REFERENCES `course_offerings` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `discussions_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `discussions` (`id`) ON DELETE SET NULL; -- -- Constraints for table `enrollments` -- ALTER TABLE `enrollments` ADD CONSTRAINT `enrollments_course_offering_id_foreign` FOREIGN KEY (`course_offering_id`) REFERENCES `course_offerings` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `enrollments_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `fee_structures` -- ALTER TABLE `fee_structures` ADD CONSTRAINT `fee_structures_academic_year_id_foreign` FOREIGN KEY (`academic_year_id`) REFERENCES `academic_years` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `fee_structures_major_id_foreign` FOREIGN KEY (`major_id`) REFERENCES `majors` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `fee_structures_semester_id_foreign` FOREIGN KEY (`semester_id`) REFERENCES `semesters` (`id`) ON DELETE SET NULL; -- -- Constraints for table `grade_appeals` -- ALTER TABLE `grade_appeals` ADD CONSTRAINT `grade_appeals_mark_id_foreign` FOREIGN KEY (`mark_id`) REFERENCES `marks` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `grade_appeals_responded_by_foreign` FOREIGN KEY (`responded_by`) REFERENCES `users` (`id`); -- -- Constraints for table `grade_components` -- ALTER TABLE `grade_components` ADD CONSTRAINT `grade_components_course_offering_id_foreign` FOREIGN KEY (`course_offering_id`) REFERENCES `course_offerings` (`id`) ON DELETE CASCADE; -- -- Constraints for table `grade_locks` -- ALTER TABLE `grade_locks` ADD CONSTRAINT `grade_locks_course_offering_id_foreign` FOREIGN KEY (`course_offering_id`) REFERENCES `course_offerings` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `grade_locks_locked_by_foreign` FOREIGN KEY (`locked_by`) REFERENCES `users` (`id`); -- -- Constraints for table `kanban_boards` -- ALTER TABLE `kanban_boards` ADD CONSTRAINT `kanban_boards_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `majors` -- ALTER TABLE `majors` ADD CONSTRAINT `majors_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE CASCADE; -- -- Constraints for table `marks` -- ALTER TABLE `marks` ADD CONSTRAINT `marks_assessment_id_foreign` FOREIGN KEY (`assessment_id`) REFERENCES `assessments` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `marks_enrollment_id_foreign` FOREIGN KEY (`enrollment_id`) REFERENCES `enrollments` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `marks_graded_by_foreign` FOREIGN KEY (`graded_by`) REFERENCES `users` (`id`); -- -- Constraints for table `medical_records` -- ALTER TABLE `medical_records` ADD CONSTRAINT `medical_records_reported_by_foreign` FOREIGN KEY (`reported_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `medical_records_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `messages` -- ALTER TABLE `messages` ADD CONSTRAINT `messages_conversation_id_foreign` FOREIGN KEY (`conversation_id`) REFERENCES `conversations` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `messages_sender_id_foreign` FOREIGN KEY (`sender_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `notes` -- ALTER TABLE `notes` ADD CONSTRAINT `notes_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `notifications` -- ALTER TABLE `notifications` ADD CONSTRAINT `notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `payments` -- ALTER TABLE `payments` ADD CONSTRAINT `payments_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `payments_fee_structure_id_foreign` FOREIGN KEY (`fee_structure_id`) REFERENCES `fee_structures` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `payments_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `productivity_boards` -- ALTER TABLE `productivity_boards` ADD CONSTRAINT `productivity_boards_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `productivity_columns` -- ALTER TABLE `productivity_columns` ADD CONSTRAINT `productivity_columns_board_id_foreign` FOREIGN KEY (`board_id`) REFERENCES `productivity_boards` (`id`) ON DELETE CASCADE; -- -- Constraints for table `productivity_tasks` -- ALTER TABLE `productivity_tasks` ADD CONSTRAINT `productivity_tasks_column_id_foreign` FOREIGN KEY (`column_id`) REFERENCES `productivity_columns` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `productivity_tasks_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `questions` -- ALTER TABLE `questions` ADD CONSTRAINT `questions_assessment_id_foreign` FOREIGN KEY (`assessment_id`) REFERENCES `assessments` (`id`) ON DELETE CASCADE; -- -- Constraints for table `question_options` -- ALTER TABLE `question_options` ADD CONSTRAINT `question_options_question_id_foreign` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`) ON DELETE CASCADE; -- -- Constraints for table `quiz_attempts` -- ALTER TABLE `quiz_attempts` ADD CONSTRAINT `quiz_attempts_assessment_id_foreign` FOREIGN KEY (`assessment_id`) REFERENCES `assessments` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `quiz_attempts_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `semesters` -- ALTER TABLE `semesters` ADD CONSTRAINT `semesters_academic_year_id_foreign` FOREIGN KEY (`academic_year_id`) REFERENCES `academic_years` (`id`) ON DELETE CASCADE; -- -- Constraints for table `settings` -- ALTER TABLE `settings` ADD CONSTRAINT `settings_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`); -- -- Constraints for table `student_competency_progress` -- ALTER TABLE `student_competency_progress` ADD CONSTRAINT `student_competency_progress_competency_id_foreign` FOREIGN KEY (`competency_id`) REFERENCES `competencies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `student_competency_progress_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `student_profiles` (`id`) ON DELETE CASCADE; -- -- Constraints for table `student_profiles` -- ALTER TABLE `student_profiles` ADD CONSTRAINT `student_profiles_major_id_foreign` FOREIGN KEY (`major_id`) REFERENCES `majors` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `student_profiles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `teacher_profiles` -- ALTER TABLE `teacher_profiles` ADD CONSTRAINT `teacher_profiles_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `teacher_profiles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `todos` -- ALTER TABLE `todos` ADD CONSTRAINT `todos_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `user_profiles` -- ALTER TABLE `user_profiles` ADD CONSTRAINT `user_profiles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;