-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: Apr 20, 2024 at 02:28 AM
-- Server version: 8.2.0
-- PHP Version: 8.2.13

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: `new_srms`
--

-- --------------------------------------------------------

--
-- Table structure for table `academic_path`
--

DROP TABLE IF EXISTS `academic_path`;
CREATE TABLE IF NOT EXISTS `academic_path` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `academic_path`
--

INSERT INTO `academic_path` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'Biology Academic Path', '2024-04-19 10:20:28', '2024-04-19 10:20:28');

-- --------------------------------------------------------

--
-- Table structure for table `academic_path_details`
--

DROP TABLE IF EXISTS `academic_path_details`;
CREATE TABLE IF NOT EXISTS `academic_path_details` (
  `id` int NOT NULL AUTO_INCREMENT,
  `academic_path_id` varchar(50) NOT NULL,
  `academic_year_id` varchar(50) NOT NULL,
  `academic_session_id` varchar(50) NOT NULL,
  `level` varchar(50) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `academic_path_details`
--

INSERT INTO `academic_path_details` (`id`, `academic_path_id`, `academic_year_id`, `academic_session_id`, `level`, `created_at`, `updated_at`) VALUES
(1, '1', '1', '1', '1', '2024-04-19 10:20:37', '2024-04-19 10:20:37'),
(2, '1', '1', '2', '2', '2024-04-19 10:20:43', '2024-04-19 10:20:43'),
(3, '1', '1', '3', '3', '2024-04-19 10:20:48', '2024-04-19 10:20:48'),
(4, '1', '2', '1', '4', '2024-04-19 10:20:57', '2024-04-19 10:20:57'),
(5, '1', '2', '2', '5', '2024-04-19 10:21:06', '2024-04-19 10:21:06'),
(6, '1', '2', '3', '6', '2024-04-19 10:21:15', '2024-04-19 10:21:15'),
(7, '1', '3', '1', '7', '2024-04-19 10:21:21', '2024-04-19 10:21:21'),
(8, '1', '3', '2', '8', '2024-04-19 10:21:27', '2024-04-19 10:21:27'),
(9, '1', '3', '3', '9', '2024-04-19 10:21:32', '2024-04-19 10:21:32'),
(10, '1', '4', '1', '10', '2024-04-19 10:21:41', '2024-04-19 10:21:41'),
(11, '1', '4', '2', '11', '2024-04-19 10:21:48', '2024-04-19 10:21:48'),
(12, '1', '4', '3', '12', '2024-04-19 10:21:53', '2024-04-19 10:21:53');

-- --------------------------------------------------------

--
-- Table structure for table `academic_session`
--

DROP TABLE IF EXISTS `academic_session`;
CREATE TABLE IF NOT EXISTS `academic_session` (
  `id` int NOT NULL AUTO_INCREMENT,
  `academic_session_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `academic_session`
--

INSERT INTO `academic_session` (`id`, `academic_session_name`, `created_at`, `updated_at`) VALUES
(1, 'Term 1', '2024-04-19 12:19:10', '2024-04-19 12:19:10'),
(2, 'Term 2', '2024-04-19 12:19:13', '2024-04-19 12:19:13'),
(3, 'Term 3', '2024-04-19 12:19:15', '2024-04-19 12:19:15'),
(4, 'Semester 1', '2024-04-19 12:19:18', '2024-04-19 12:19:18'),
(5, 'Semester 2', '2024-04-19 12:19:20', '2024-04-19 12:19:20');

-- --------------------------------------------------------

--
-- Table structure for table `academic_year`
--

DROP TABLE IF EXISTS `academic_year`;
CREATE TABLE IF NOT EXISTS `academic_year` (
  `id` int NOT NULL AUTO_INCREMENT,
  `academic_year_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `academic_year`
--

INSERT INTO `academic_year` (`id`, `academic_year_name`, `created_at`, `updated_at`) VALUES
(1, 'Year 1', '2024-04-19 12:18:52', '2024-04-19 12:18:52'),
(2, 'Year 2', '2024-04-19 12:18:57', '2024-04-19 12:18:57'),
(3, 'Year 3', '2024-04-19 12:19:01', '2024-04-19 12:19:01'),
(4, 'Year 4', '2024-04-19 12:19:04', '2024-04-19 12:19:04'),
(5, 'Year 5', '2024-04-19 12:19:06', '2024-04-19 12:19:06');

-- --------------------------------------------------------

--
-- Table structure for table `activity_log`
--

DROP TABLE IF EXISTS `activity_log`;
CREATE TABLE IF NOT EXISTS `activity_log` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `log_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `subject_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject_id` bigint UNSIGNED DEFAULT NULL,
  `causer_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `causer_id` bigint UNSIGNED DEFAULT NULL,
  `properties` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `subject` (`subject_type`,`subject_id`),
  KEY `causer` (`causer_type`,`causer_id`),
  KEY `activity_log_log_name_index` (`log_name`)
) ENGINE=InnoDB AUTO_INCREMENT=1178 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `activity_log`
--

INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(1, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 6, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"92414900\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-13 09:02:22', '2024-03-13 09:02:22'),
(2, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"4\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-13 09:02:44', '2024-03-13 09:02:44'),
(3, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"4\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-13 09:02:47', '2024-03-13 09:02:47'),
(4, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"3\", \"student_id\": \"4\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-13 09:02:54', '2024-03-13 09:02:54'),
(5, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"4\", \"student_id\": \"4\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-13 09:02:57', '2024-03-13 09:02:57'),
(6, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"5\", \"student_id\": \"4\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-13 09:03:12', '2024-03-13 09:03:12'),
(7, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 4, \"quotation_no\": \"382276\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"First quotation\"}, \"old_values\": []}', '2024-03-13 09:03:49', '2024-03-13 09:03:49'),
(8, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_quotation_id\": 32}, \"old_values\": []}', '2024-03-13 09:03:49', '2024-03-13 09:03:49'),
(9, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_quotation_id\": 32}, \"old_values\": []}', '2024-03-13 09:03:49', '2024-03-13 09:03:49'),
(10, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_quotation_id\": 32}, \"old_values\": []}', '2024-03-13 09:03:49', '2024-03-13 09:03:49'),
(11, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5883040625\", \"student_id\": 4, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-13 09:04:33', '2024-03-13 09:04:33'),
(12, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 4, \"student_id\": 4, \"description\": \"Full payment\", \"reference_no\": \"1710320673Y7vBrK\", \"running_balance\": -2090}, \"old_values\": []}', '2024-03-13 09:04:33', '2024-03-13 09:04:33'),
(13, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV3718026947\", \"student_id\": 4, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-13 09:04:33', '2024-03-13 09:04:33'),
(14, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 3}, \"old_values\": []}', '2024-03-13 09:04:33', '2024-03-13 09:04:33'),
(15, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 3}, \"old_values\": []}', '2024-03-13 09:04:33', '2024-03-13 09:04:33'),
(16, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 3}, \"old_values\": []}', '2024-03-13 09:04:33', '2024-03-13 09:04:33'),
(17, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 7, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"79792199\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-14 06:50:41', '2024-03-14 06:50:41'),
(18, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"5\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-14 06:51:17', '2024-03-14 06:51:17'),
(19, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"5\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-14 06:51:19', '2024-03-14 06:51:19'),
(20, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"3\", \"student_id\": \"5\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-14 06:51:21', '2024-03-14 06:51:21'),
(21, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"4\", \"student_id\": \"5\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-14 06:51:24', '2024-03-14 06:51:24'),
(22, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"5\", \"student_id\": \"5\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-14 06:51:26', '2024-03-14 06:51:26'),
(23, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 5, \"quotation_no\": \"744951\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"First year quote\"}, \"old_values\": []}', '2024-03-14 06:51:47', '2024-03-14 06:51:47'),
(24, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-14 06:51:47', '2024-03-14 06:51:47'),
(25, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-14 06:51:47', '2024-03-14 06:51:47'),
(26, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-14 06:51:47', '2024-03-14 06:51:47'),
(27, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT4612075021\", \"student_id\": 5, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-14 06:54:45', '2024-03-14 06:54:45'),
(28, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 5, \"student_id\": 5, \"description\": \"Full payment\", \"reference_no\": \"1710399286bN72sV\", \"running_balance\": -2090}, \"old_values\": []}', '2024-03-14 06:54:46', '2024-03-14 06:54:46'),
(29, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV4287710538\", \"student_id\": 5, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-14 06:54:46', '2024-03-14 06:54:46'),
(30, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 4}, \"old_values\": []}', '2024-03-14 06:54:46', '2024-03-14 06:54:46'),
(31, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 4}, \"old_values\": []}', '2024-03-14 06:54:46', '2024-03-14 06:54:46'),
(32, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 4}, \"old_values\": []}', '2024-03-14 06:54:46', '2024-03-14 06:54:46'),
(33, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1213566263\", \"student_id\": 5, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-14 06:55:53', '2024-03-14 06:55:53'),
(34, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 6, \"student_id\": 5, \"description\": \"Full payment\", \"reference_no\": \"1710399353iVbSIB\", \"running_balance\": -4180}, \"old_values\": []}', '2024-03-14 06:55:53', '2024-03-14 06:55:53'),
(35, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 5}, \"old_values\": []}', '2024-03-14 06:55:53', '2024-03-14 06:55:53'),
(36, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT8251956398\", \"student_id\": 5, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-14 06:56:37', '2024-03-14 06:56:37'),
(37, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 7, \"student_id\": 5, \"description\": \"Full payment\", \"reference_no\": \"1710399397U8sp3H\", \"running_balance\": -6270}, \"old_values\": []}', '2024-03-14 06:56:37', '2024-03-14 06:56:37'),
(38, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 5}, \"old_values\": []}', '2024-03-14 06:56:37', '2024-03-14 06:56:37'),
(39, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5254832305\", \"student_id\": 5, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-14 07:01:00', '2024-03-14 07:01:00'),
(40, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 8, \"student_id\": 5, \"description\": \"Full payment\", \"reference_no\": \"1710399660fzOGWV\", \"running_balance\": -8360}, \"old_values\": []}', '2024-03-14 07:01:00', '2024-03-14 07:01:00'),
(41, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"student_id\": 5}, \"old_values\": []}', '2024-03-14 07:01:00', '2024-03-14 07:01:00'),
(42, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT9195818149\", \"student_id\": 5, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-14 07:11:09', '2024-03-14 07:11:09'),
(43, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 9, \"student_id\": 5, \"description\": \"Full payment\", \"reference_no\": \"1710400269HuFXGy\", \"running_balance\": -10450}, \"old_values\": []}', '2024-03-14 07:11:09', '2024-03-14 07:11:09'),
(44, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 5}, \"old_values\": []}', '2024-03-14 07:11:09', '2024-03-14 07:11:09'),
(45, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5180188194\", \"student_id\": 5, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-14 07:12:06', '2024-03-14 07:12:06'),
(46, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 10, \"student_id\": 5, \"description\": \"Full payment\", \"reference_no\": \"1710400326asnown\", \"running_balance\": -12540}, \"old_values\": []}', '2024-03-14 07:12:06', '2024-03-14 07:12:06'),
(47, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 5, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-14 07:12:07', '2024-03-14 07:12:07'),
(48, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 8, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"68523943\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-20 09:36:59', '2024-03-20 09:36:59'),
(49, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"6\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-20 09:37:19', '2024-03-20 09:37:19'),
(50, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"6\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-20 09:37:22', '2024-03-20 09:37:22'),
(51, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"3\", \"student_id\": \"6\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-20 09:37:27', '2024-03-20 09:37:27'),
(52, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"4\", \"student_id\": \"6\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-20 09:37:29', '2024-03-20 09:37:29'),
(53, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"5\", \"student_id\": \"6\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-20 09:37:35', '2024-03-20 09:37:35'),
(54, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 6, \"quotation_no\": \"875226\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"First year fees\"}, \"old_values\": []}', '2024-03-20 10:15:12', '2024-03-20 10:15:12'),
(55, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 6, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-20 10:15:12', '2024-03-20 10:15:12'),
(56, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-03-20 10:15:12', '2024-03-20 10:15:12'),
(57, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-03-20 10:15:12', '2024-03-20 10:15:12'),
(58, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-03-20 10:15:12', '2024-03-20 10:15:12'),
(59, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 6, \"quotation_no\": \"875226\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"First year fees\"}, \"old_values\": []}', '2024-03-20 10:43:27', '2024-03-20 10:43:27'),
(60, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 6, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-20 10:43:27', '2024-03-20 10:43:27'),
(61, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-03-20 10:43:27', '2024-03-20 10:43:27'),
(62, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-03-20 10:43:27', '2024-03-20 10:43:27'),
(63, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-03-20 10:43:27', '2024-03-20 10:43:27'),
(64, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=1&academic_year_id=1&add=true&level=1\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"1\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-20 10:54:04', '2024-03-20 10:54:04'),
(65, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=2&academic_year_id=1&add=true&level=2\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"2\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-20 10:54:10', '2024-03-20 10:54:10'),
(66, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=3&academic_year_id=1&add=true&level=3\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"3\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"3\"}, \"old_values\": []}', '2024-03-20 10:54:15', '2024-03-20 10:54:15'),
(67, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=uXXqjXB3dC9fxmXJlJm1uIl4A1fB0WE1no6hxXs3&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-20 13:12:07', '2024-03-20 13:12:07'),
(68, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=uXXqjXB3dC9fxmXJlJm1uIl4A1fB0WE1no6hxXs3&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-20 13:17:23', '2024-03-20 13:17:23'),
(69, 'default', 'created', 'App\\Models\\StudentProgress', NULL, NULL, NULL, '{\"url\": \"http://newsrms/returning-student-search?_token=uXXqjXB3dC9fxmXJlJm1uIl4A1fB0WE1no6hxXs3&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-20 13:17:56', '2024-03-20 13:17:56'),
(70, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=uXXqjXB3dC9fxmXJlJm1uIl4A1fB0WE1no6hxXs3&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-20 13:20:53', '2024-03-20 13:20:53'),
(71, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=uXXqjXB3dC9fxmXJlJm1uIl4A1fB0WE1no6hxXs3&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-20 13:21:32', '2024-03-20 13:21:32'),
(72, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=uXXqjXB3dC9fxmXJlJm1uIl4A1fB0WE1no6hxXs3&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-20 13:22:17', '2024-03-20 13:22:17'),
(73, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=uXXqjXB3dC9fxmXJlJm1uIl4A1fB0WE1no6hxXs3&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-20 13:22:29', '2024-03-20 13:22:29'),
(74, 'default', 'created', 'App\\Models\\StudentProgress', NULL, NULL, NULL, '{\"url\": \"http://newsrms/returning-student-search?_token=uXXqjXB3dC9fxmXJlJm1uIl4A1fB0WE1no6hxXs3&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 06:24:30', '2024-03-21 06:24:30'),
(75, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 06:26:09', '2024-03-21 06:26:09'),
(76, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 06:27:03', '2024-03-21 06:27:03'),
(77, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 06:29:16', '2024-03-21 06:29:16'),
(78, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 06:30:50', '2024-03-21 06:30:50'),
(79, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 06:31:03', '2024-03-21 06:31:03'),
(80, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 06:31:23', '2024-03-21 06:31:23'),
(81, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:11:12', '2024-03-21 07:11:12'),
(82, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:11:38', '2024-03-21 07:11:38'),
(83, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:28:26', '2024-03-21 07:28:26'),
(84, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:28:37', '2024-03-21 07:28:37'),
(85, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:29:14', '2024-03-21 07:29:14'),
(86, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:29:41', '2024-03-21 07:29:41'),
(87, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:30:13', '2024-03-21 07:30:13'),
(88, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:30:24', '2024-03-21 07:30:24'),
(89, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:33:56', '2024-03-21 07:33:56'),
(90, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:54:02', '2024-03-21 07:54:02'),
(91, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 07:55:44', '2024-03-21 07:55:44'),
(92, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"6\", \"intake_year\": null, \"academic_year_id\": null, \"course_status_id\": \"1\", \"academic_session_id\": null}, \"old_values\": []}', '2024-03-21 08:11:11', '2024-03-21 08:11:11'),
(93, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"6\", \"intake_year\": null, \"academic_year_id\": null, \"course_status_id\": \"1\", \"academic_session_id\": null}, \"old_values\": []}', '2024-03-21 08:12:34', '2024-03-21 08:12:34'),
(94, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"6\", \"intake_year\": null, \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": null}, \"old_values\": []}', '2024-03-21 08:20:42', '2024-03-21 08:20:42'),
(95, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"6\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-21 08:21:39', '2024-03-21 08:21:39'),
(96, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 08:21:40', '2024-03-21 08:21:40'),
(97, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-21 08:24:30', '2024-03-21 08:24:30'),
(98, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-21 08:40:23', '2024-03-21 08:40:23'),
(99, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-21 08:43:36', '2024-03-21 08:43:36'),
(100, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"3\", \"student_id\": \"6\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-21 08:44:01', '2024-03-21 08:44:01'),
(101, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-21 08:44:01', '2024-03-21 08:44:01'),
(102, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/returning-student-search?_token=XTzSfauiOt6E1nsGw4GQgviOQUzLvEMmQTwpuhbo&student_number=68523943\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 6, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-21 08:48:46', '2024-03-21 08:48:46'),
(103, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 6, \"quotation_no\": \"189355\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"dafdfasd\"}, \"old_values\": []}', '2024-03-21 08:52:09', '2024-03-21 08:52:09'),
(104, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 6, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-21 08:52:09', '2024-03-21 08:52:09');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(105, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 4}, \"old_values\": []}', '2024-03-21 08:52:09', '2024-03-21 08:52:09'),
(106, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 4}, \"old_values\": []}', '2024-03-21 08:52:09', '2024-03-21 08:52:09'),
(107, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 4}, \"old_values\": []}', '2024-03-21 08:52:09', '2024-03-21 08:52:09'),
(108, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 6, \"quotation_no\": \"189355\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"dafdfasd\"}, \"old_values\": []}', '2024-03-21 08:52:13', '2024-03-21 08:52:13'),
(109, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 6, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-21 08:52:13', '2024-03-21 08:52:13'),
(110, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 5}, \"old_values\": []}', '2024-03-21 08:52:13', '2024-03-21 08:52:13'),
(111, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 5}, \"old_values\": []}', '2024-03-21 08:52:13', '2024-03-21 08:52:13'),
(112, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 5}, \"old_values\": []}', '2024-03-21 08:52:13', '2024-03-21 08:52:13'),
(113, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 6, \"quotation_no\": \"189355\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"dafdfasd\"}, \"old_values\": []}', '2024-03-21 08:52:29', '2024-03-21 08:52:29'),
(114, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 6, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-21 08:52:29', '2024-03-21 08:52:29'),
(115, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 6}, \"old_values\": []}', '2024-03-21 08:52:29', '2024-03-21 08:52:29'),
(116, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 6}, \"old_values\": []}', '2024-03-21 08:52:29', '2024-03-21 08:52:29'),
(117, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 6}, \"old_values\": []}', '2024-03-21 08:52:29', '2024-03-21 08:52:29'),
(118, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 8, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"68523943\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-21 09:14:11', '2024-03-21 09:14:11'),
(119, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 8, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"68523943\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-21 09:14:26', '2024-03-21 09:14:26'),
(120, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 8, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"68523943\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-21 09:29:01', '2024-03-21 09:29:01'),
(121, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": null, \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-21 09:29:01', '2024-03-21 09:29:01'),
(122, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 8, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"68523943\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-21 09:29:44', '2024-03-21 09:29:44'),
(123, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 8, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"68523943\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-21 09:30:14', '2024-03-21 09:30:14'),
(124, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-21 09:31:54', '2024-03-21 09:31:54'),
(125, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-21 12:38:51', '2024-03-21 12:38:51'),
(126, 'default', 'created', 'App\\Models\\StudentCourse', NULL, NULL, NULL, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": null, \"course_status_id\": \"1\", \"academic_session_id\": null}, \"old_values\": []}', '2024-03-22 06:59:44', '2024-03-22 06:59:44'),
(127, 'default', 'created', 'App\\Models\\StudentCourse', NULL, NULL, NULL, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": null, \"course_status_id\": \"1\", \"academic_session_id\": null}, \"old_values\": []}', '2024-03-22 07:01:27', '2024-03-22 07:01:27'),
(128, 'default', 'created', 'App\\Models\\StudentCourse', NULL, NULL, NULL, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": null, \"course_status_id\": \"1\", \"academic_session_id\": null}, \"old_values\": []}', '2024-03-22 07:04:28', '2024-03-22 07:04:28'),
(129, 'default', 'created', 'App\\Models\\StudentCourse', NULL, NULL, NULL, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": null, \"course_status_id\": \"1\", \"academic_session_id\": null}, \"old_values\": []}', '2024-03-22 07:04:56', '2024-03-22 07:04:56'),
(130, 'default', 'created', 'App\\Models\\StudentCourse', NULL, NULL, NULL, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": null, \"course_status_id\": \"1\", \"academic_session_id\": null}, \"old_values\": []}', '2024-03-22 07:08:11', '2024-03-22 07:08:11'),
(131, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": null, \"course_status_id\": \"1\", \"academic_session_id\": null}, \"old_values\": []}', '2024-03-22 07:11:24', '2024-03-22 07:11:24'),
(132, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-22 07:14:45', '2024-03-22 07:14:45'),
(133, 'default', 'deleted', 'App\\Models\\StudentCourse', 30, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/course-delete\", \"action\": \"deleted\", \"browser\": \"Firefox\", \"item_id\": 30, \"ip_address\": \"::1\", \"new_values\": {\"id\": 30, \"course_id\": \"1\", \"created_at\": \"2024-03-21 14:38:51\", \"student_id\": \"7\", \"updated_at\": \"2024-03-21 14:38:51\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": {\"id\": 30, \"course_id\": \"1\", \"created_at\": \"2024-03-21T12:38:51.000000Z\", \"student_id\": \"7\", \"updated_at\": \"2024-03-21T12:38:51.000000Z\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}}', '2024-03-22 07:41:28', '2024-03-22 07:41:28'),
(134, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-22 07:50:03', '2024-03-22 07:50:03'),
(135, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-22 07:57:30', '2024-03-22 07:57:30'),
(136, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-22 07:57:33', '2024-03-22 07:57:33'),
(137, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-22 07:57:38', '2024-03-22 07:57:38'),
(138, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-22 07:57:46', '2024-03-22 07:57:46'),
(139, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"7\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-22 08:15:52', '2024-03-22 08:15:52'),
(140, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 08:57:11', '2024-03-22 08:57:11'),
(141, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 08:57:30', '2024-03-22 08:57:30'),
(142, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:03:15', '2024-03-22 09:03:15'),
(143, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:03:15', '2024-03-22 09:03:15'),
(144, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": null, \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 7, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-22 09:03:15', '2024-03-22 09:03:15'),
(145, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:03:45', '2024-03-22 09:03:45'),
(146, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:06:04', '2024-03-22 09:06:04'),
(147, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:06:53', '2024-03-22 09:06:53'),
(148, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:07:15', '2024-03-22 09:07:15'),
(149, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:07:21', '2024-03-22 09:07:21'),
(150, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:07:21', '2024-03-22 09:07:21'),
(151, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": null, \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 7, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-22 09:07:21', '2024-03-22 09:07:21'),
(152, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:08:23', '2024-03-22 09:08:23'),
(153, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:09:04', '2024-03-22 09:09:04'),
(154, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:09:09', '2024-03-22 09:09:09'),
(155, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:09:09', '2024-03-22 09:09:09'),
(156, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": null, \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 7, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-22 09:09:09', '2024-03-22 09:09:09'),
(157, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:09:31', '2024-03-22 09:09:31'),
(158, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:09:31', '2024-03-22 09:09:31'),
(159, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 16}, \"old_values\": []}', '2024-03-22 09:09:31', '2024-03-22 09:09:31'),
(160, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 16}, \"old_values\": []}', '2024-03-22 09:09:31', '2024-03-22 09:09:31'),
(161, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 16}, \"old_values\": []}', '2024-03-22 09:09:31', '2024-03-22 09:09:31'),
(162, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:10:21', '2024-03-22 09:10:21'),
(163, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:10:21', '2024-03-22 09:10:21'),
(164, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:13:04', '2024-03-22 09:13:04'),
(165, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:13:04', '2024-03-22 09:13:04'),
(166, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:13:51', '2024-03-22 09:13:51'),
(167, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:13:51', '2024-03-22 09:13:51'),
(168, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:16:26', '2024-03-22 09:16:26'),
(169, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:16:26', '2024-03-22 09:16:26'),
(170, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 20}, \"old_values\": []}', '2024-03-22 09:16:26', '2024-03-22 09:16:26'),
(171, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 20}, \"old_values\": []}', '2024-03-22 09:16:26', '2024-03-22 09:16:26'),
(172, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 20}, \"old_values\": []}', '2024-03-22 09:16:26', '2024-03-22 09:16:26'),
(173, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:18:15', '2024-03-22 09:18:15'),
(174, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:18:15', '2024-03-22 09:18:15'),
(175, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:18:22', '2024-03-22 09:18:22'),
(176, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:18:22', '2024-03-22 09:18:22'),
(177, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-22 09:35:31', '2024-03-22 09:35:31'),
(178, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 09:35:32', '2024-03-22 09:35:32'),
(179, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 23}, \"old_values\": []}', '2024-03-22 09:35:32', '2024-03-22 09:35:32'),
(180, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 23}, \"old_values\": []}', '2024-03-22 09:35:32', '2024-03-22 09:35:32'),
(181, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 23}, \"old_values\": []}', '2024-03-22 09:35:32', '2024-03-22 09:35:32'),
(182, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 7, \"quotation_no\": \"326433\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"sfdfs\"}, \"old_values\": []}', '2024-03-22 10:31:37', '2024-03-22 10:31:37'),
(183, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 7, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 10:31:37', '2024-03-22 10:31:37'),
(184, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 24}, \"old_values\": []}', '2024-03-22 10:31:37', '2024-03-22 10:31:37'),
(185, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 24}, \"old_values\": []}', '2024-03-22 10:31:37', '2024-03-22 10:31:37'),
(186, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 24}, \"old_values\": []}', '2024-03-22 10:31:37', '2024-03-22 10:31:37'),
(187, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 9, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"74657556\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-22 11:11:38', '2024-03-22 11:11:38'),
(188, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-22 11:11:38', '2024-03-22 11:11:38'),
(189, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 10, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"76786972\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-25 11:05:50', '2024-03-25 11:05:50'),
(190, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-25 11:05:51', '2024-03-25 11:05:51'),
(191, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 11:06:13', '2024-03-25 11:06:13'),
(192, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 11:06:15', '2024-03-25 11:06:15'),
(193, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"3\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 11:06:17', '2024-03-25 11:06:17'),
(194, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"4\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 11:06:21', '2024-03-25 11:06:21'),
(195, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"5\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 11:06:27', '2024-03-25 11:06:27'),
(196, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"768697\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"sldkfj\"}, \"old_values\": []}', '2024-03-25 11:07:00', '2024-03-25 11:07:00'),
(197, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-25 11:07:00', '2024-03-25 11:07:00'),
(198, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-25 11:07:00', '2024-03-25 11:07:00'),
(199, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-25 11:07:00', '2024-03-25 11:07:00'),
(200, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT3802040981\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-25 11:09:18', '2024-03-25 11:09:18'),
(201, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711364958WoMk8J\", \"running_balance\": -2090}, \"old_values\": []}', '2024-03-25 11:09:18', '2024-03-25 11:09:18'),
(202, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV3484571792\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-25 11:09:18', '2024-03-25 11:09:18'),
(203, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-25 11:09:18', '2024-03-25 11:09:18'),
(204, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-25 11:09:18', '2024-03-25 11:09:18'),
(205, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-25 11:09:18', '2024-03-25 11:09:18'),
(206, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"2\"}, \"old_values\": []}', '2024-03-25 11:09:18', '2024-03-25 11:09:18'),
(207, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT3848130215\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-25 11:20:48', '2024-03-25 11:20:48'),
(208, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711365648qkLRHZ\", \"running_balance\": -4180}, \"old_values\": []}', '2024-03-25 11:20:48', '2024-03-25 11:20:48'),
(209, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 13:05:51\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25 13:05:51\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T11:05:51.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25T11:05:51.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-25 11:20:48', '2024-03-25 11:20:48'),
(210, 'default', 'updated', 'App\\Models\\StudentStatus', 5, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=Qklb6HmJ4zxWHQP7AhqJR4MWua24hcGZVuKyaAly&reg_status_id=1&student_no=76786972\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 5, \"ip_address\": \"::1\", \"new_values\": {\"id\": 5, \"intake\": \"2024\", \"created_at\": \"2024-03-25 13:09:18\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"76786972\", \"updated_at\": \"2024-03-25 13:09:18\", \"reg_status_id\": \"1\", \"academic_year_id\": \"1\"}, \"old_values\": {\"id\": 5, \"intake\": \"2024\", \"created_at\": \"2024-03-25T11:09:18.000000Z\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"76786972\", \"updated_at\": \"2024-03-25T11:09:18.000000Z\", \"reg_status_id\": \"2\", \"academic_year_id\": \"1\"}}', '2024-03-25 11:24:32', '2024-03-25 11:24:32'),
(211, 'default', 'updated', 'App\\Models\\StudentStatus', 5, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=Qklb6HmJ4zxWHQP7AhqJR4MWua24hcGZVuKyaAly&reg_status_id=7&student_no=76786972\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 5, \"ip_address\": \"::1\", \"new_values\": {\"id\": 5, \"intake\": \"2024\", \"created_at\": \"2024-03-25 13:09:18\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"76786972\", \"updated_at\": \"2024-03-25 13:24:32\", \"reg_status_id\": \"7\", \"academic_year_id\": \"1\"}, \"old_values\": {\"id\": 5, \"intake\": \"2024\", \"created_at\": \"2024-03-25T11:09:18.000000Z\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"76786972\", \"updated_at\": \"2024-03-25T11:24:32.000000Z\", \"reg_status_id\": \"1\", \"academic_year_id\": \"1\"}}', '2024-03-25 11:33:49', '2024-03-25 11:33:49');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(212, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=Qklb6HmJ4zxWHQP7AhqJR4MWua24hcGZVuKyaAly&reg_status_id=7&student_no=76786972\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 13:05:51\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"76786972\", \"updated_at\": \"2024-03-25 13:20:49\", \"reg_status_id\": \"7\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T11:05:51.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"76786972\", \"updated_at\": \"2024-03-25T11:20:49.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-03-25 11:35:12', '2024-03-25 11:35:12'),
(213, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=Qklb6HmJ4zxWHQP7AhqJR4MWua24hcGZVuKyaAly&reg_status_id=7&student_no=76786972\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 13:05:51\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"76786972\", \"updated_at\": \"2024-03-25 13:20:49\", \"std_reg_status_id\": \"7\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T11:05:51.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"76786972\", \"updated_at\": \"2024-03-25T11:20:49.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-03-25 11:35:53', '2024-03-25 11:35:53'),
(214, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 11:50:17', '2024-03-25 11:50:17'),
(215, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 11:54:57', '2024-03-25 11:54:57'),
(216, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 11:55:03', '2024-03-25 11:55:03'),
(217, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 11:55:12', '2024-03-25 11:55:12'),
(218, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"341241\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"next level\"}, \"old_values\": []}', '2024-03-25 11:56:27', '2024-03-25 11:56:27'),
(219, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-25 11:56:27', '2024-03-25 11:56:27'),
(220, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-03-25 11:56:27', '2024-03-25 11:56:27'),
(221, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-03-25 11:56:27', '2024-03-25 11:56:27'),
(222, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-03-25 11:56:27', '2024-03-25 11:56:27'),
(223, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"341241\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"next level\"}, \"old_values\": []}', '2024-03-25 12:09:25', '2024-03-25 12:09:25'),
(224, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-25 12:09:25', '2024-03-25 12:09:25'),
(225, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-03-25 12:09:25', '2024-03-25 12:09:25'),
(226, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-03-25 12:09:25', '2024-03-25 12:09:25'),
(227, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-03-25 12:09:25', '2024-03-25 12:09:25'),
(228, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"341241\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"2\", \"quotation_description\": \"next level\"}, \"old_values\": []}', '2024-03-25 12:22:30', '2024-03-25 12:22:30'),
(229, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-25 12:22:30', '2024-03-25 12:22:30'),
(230, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5273281814\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"2\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-25 12:23:54', '2024-03-25 12:23:54'),
(231, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 3, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711369434eel1Yj\", \"running_balance\": -6270}, \"old_values\": []}', '2024-03-25 12:23:54', '2024-03-25 12:23:54'),
(232, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV5143638575\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-25 12:23:54', '2024-03-25 12:23:54'),
(233, 'default', 'updated', 'App\\Models\\StudentProgress', 5, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 5, \"ip_address\": \"::1\", \"new_values\": {\"id\": 5, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 14:22:30\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25 14:22:30\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 5, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T12:22:30.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25T12:22:30.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-25 12:23:54', '2024-03-25 12:23:54'),
(234, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"334013\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"2\", \"quotation_description\": \"next level\"}, \"old_values\": []}', '2024-03-25 12:31:05', '2024-03-25 12:31:05'),
(235, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-25 12:31:05', '2024-03-25 12:31:05'),
(236, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT8578732750\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"2\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-25 12:31:46', '2024-03-25 12:31:46'),
(237, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 4, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711369906DVwYz2\", \"running_balance\": -8360}, \"old_values\": []}', '2024-03-25 12:31:46', '2024-03-25 12:31:46'),
(238, 'default', 'updated', 'App\\Models\\StudentProgress', 6, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 6, \"ip_address\": \"::1\", \"new_values\": {\"id\": 6, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 14:31:05\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25 14:31:05\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 6, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T12:31:05.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25T12:31:05.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-25 12:31:46', '2024-03-25 12:31:46'),
(239, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 11, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"64722140\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-25 12:36:01', '2024-03-25 12:36:01'),
(240, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-25 12:36:01', '2024-03-25 12:36:01'),
(241, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 12:36:25', '2024-03-25 12:36:25'),
(242, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 12:36:28', '2024-03-25 12:36:28'),
(243, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"3\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 12:36:31', '2024-03-25 12:36:31'),
(244, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"4\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 12:36:33', '2024-03-25 12:36:33'),
(245, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"429545\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"first level\"}, \"old_values\": []}', '2024-03-25 12:36:42', '2024-03-25 12:36:42'),
(246, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-25 12:36:42', '2024-03-25 12:36:42'),
(247, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-25 12:36:42', '2024-03-25 12:36:42'),
(248, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-25 12:36:42', '2024-03-25 12:36:42'),
(249, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT8466602496\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-25 12:37:12', '2024-03-25 12:37:12'),
(250, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711370232oKZ9zm\", \"running_balance\": -2090}, \"old_values\": []}', '2024-03-25 12:37:12', '2024-03-25 12:37:12'),
(251, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV3830227353\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-25 12:37:12', '2024-03-25 12:37:12'),
(252, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-25 12:37:12', '2024-03-25 12:37:12'),
(253, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-25 12:37:12', '2024-03-25 12:37:12'),
(254, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-25 12:37:12', '2024-03-25 12:37:12'),
(255, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 14:36:01\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25 14:36:01\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T12:36:01.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25T12:36:01.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-25 12:37:12', '2024-03-25 12:37:12'),
(256, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=noU4BsAHVPIm3GcdDLFYTe92dfCqPruiEwYVHkir&reg_status_id=7&student_no=64722140\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 14:36:01\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"64722140\", \"updated_at\": \"2024-03-25 14:37:12\", \"std_reg_status_id\": \"7\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T12:36:01.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"64722140\", \"updated_at\": \"2024-03-25T12:37:12.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-03-25 12:37:43', '2024-03-25 12:37:43'),
(257, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 12:37:59', '2024-03-25 12:37:59'),
(258, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 12:38:02', '2024-03-25 12:38:02'),
(259, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"3\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 12:38:04', '2024-03-25 12:38:04'),
(260, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"4\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 12:38:07', '2024-03-25 12:38:07'),
(261, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"221098\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"2\", \"quotation_description\": \"next level\"}, \"old_values\": []}', '2024-03-25 12:38:19', '2024-03-25 12:38:19'),
(262, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-25 12:38:19', '2024-03-25 12:38:19'),
(263, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT3955184873\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"2\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-25 12:39:12', '2024-03-25 12:39:12'),
(264, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711370352sWwks9\", \"running_balance\": -4180}, \"old_values\": []}', '2024-03-25 12:39:12', '2024-03-25 12:39:12'),
(265, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV7985902011\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-25 12:39:12', '2024-03-25 12:39:12'),
(266, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 14:38:19\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25 14:38:19\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T12:38:19.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25T12:38:19.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-25 12:39:12', '2024-03-25 12:39:12'),
(267, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 12, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"74222557\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-25 13:10:42', '2024-03-25 13:10:42'),
(268, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-25 13:10:42', '2024-03-25 13:10:42'),
(269, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 13:11:19', '2024-03-25 13:11:19'),
(270, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 13:11:22', '2024-03-25 13:11:22'),
(271, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"3\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 13:11:24', '2024-03-25 13:11:24'),
(272, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"4\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 13:11:27', '2024-03-25 13:11:27'),
(273, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"5\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-25 13:11:32', '2024-03-25 13:11:32'),
(274, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"186608\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"First level\"}, \"old_values\": []}', '2024-03-25 13:11:39', '2024-03-25 13:11:39'),
(275, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-25 13:11:39', '2024-03-25 13:11:39'),
(276, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-25 13:11:39', '2024-03-25 13:11:39'),
(277, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-25 13:11:39', '2024-03-25 13:11:39'),
(278, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2925283461\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"500\", \"academic_session_id\": \"1\", \"receipt_description\": \"Partial payment\"}, \"old_values\": []}', '2024-03-25 13:12:36', '2024-03-25 13:12:36'),
(279, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"500\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Partial payment\", \"reference_no\": \"1711372356Hbn0Ul\", \"running_balance\": -500}, \"old_values\": []}', '2024-03-25 13:12:36', '2024-03-25 13:12:36'),
(280, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV6394220064\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-25 13:12:36', '2024-03-25 13:12:36'),
(281, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-25 13:12:36', '2024-03-25 13:12:36'),
(282, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-25 13:12:36', '2024-03-25 13:12:36'),
(283, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-25 13:12:36', '2024-03-25 13:12:36'),
(284, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 15:10:42\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25 15:10:42\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T13:10:42.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25T13:10:42.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-25 13:12:36', '2024-03-25 13:12:36'),
(285, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=hYaMT1kB4VigIGh4UzVoSGeQsXCqSmLiOV1l1qOc&reg_status_id=7&student_no=74222557\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 15:10:42\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"74222557\", \"updated_at\": \"2024-03-25 15:12:36\", \"std_reg_status_id\": \"7\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T13:10:42.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"student_no\": \"74222557\", \"updated_at\": \"2024-03-25T13:12:36.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-03-25 13:15:52', '2024-03-25 13:15:52'),
(286, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 13:16:13', '2024-03-25 13:16:13'),
(287, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 13:18:29', '2024-03-25 13:18:29'),
(288, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"2\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 13:18:44', '2024-03-25 13:18:44'),
(289, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"3\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-25 13:18:47', '2024-03-25 13:18:47'),
(290, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"248358\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"2\", \"quotation_description\": \"next level\"}, \"old_values\": []}', '2024-03-25 13:20:22', '2024-03-25 13:20:22'),
(291, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-25 13:20:22', '2024-03-25 13:20:22'),
(292, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5595827547\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2000\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-25 13:22:12', '2024-03-25 13:22:12'),
(293, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"2000\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711372932qlDLQj\", \"running_balance\": -2500}, \"old_values\": []}', '2024-03-25 13:22:12', '2024-03-25 13:22:12'),
(294, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25 15:20:22\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25 15:20:22\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-25T13:20:22.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-25T13:20:22.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-25 13:22:13', '2024-03-25 13:22:13'),
(295, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:09:09', '2024-03-26 08:09:09'),
(296, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-26 08:09:09', '2024-03-26 08:09:09'),
(297, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:18:27', '2024-03-26 08:18:27'),
(298, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:20:32', '2024-03-26 08:20:32'),
(299, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:21:23', '2024-03-26 08:21:23'),
(300, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:22:16', '2024-03-26 08:22:16'),
(301, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:39:07', '2024-03-26 08:39:07'),
(302, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:40:58', '2024-03-26 08:40:58'),
(303, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:41:09', '2024-03-26 08:41:09'),
(304, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:41:18', '2024-03-26 08:41:18'),
(305, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:41:28', '2024-03-26 08:41:28'),
(306, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:41:38', '2024-03-26 08:41:38'),
(307, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:50:06', '2024-03-26 08:50:06'),
(308, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 08:54:54', '2024-03-26 08:54:54'),
(309, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 2, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-26 08:54:54', '2024-03-26 08:54:54'),
(310, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 09:00:28', '2024-03-26 09:00:28'),
(311, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 2, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-26 09:00:28', '2024-03-26 09:00:28');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(312, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 21, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:00:28', '2024-03-26 09:00:28'),
(313, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 22, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:00:28', '2024-03-26 09:00:28'),
(314, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 23, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:00:28', '2024-03-26 09:00:28'),
(315, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 24, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:00:28', '2024-03-26 09:00:28'),
(316, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 25, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:00:28', '2024-03-26 09:00:28'),
(317, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 26, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:00:28', '2024-03-26 09:00:28'),
(318, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 13, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"85163544\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-26 09:26:52', '2024-03-26 09:26:52'),
(319, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-26 09:26:52', '2024-03-26 09:26:52'),
(320, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:26:52', '2024-03-26 09:26:52'),
(321, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:26:52', '2024-03-26 09:26:52'),
(322, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:26:52', '2024-03-26 09:26:52'),
(323, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:26:52', '2024-03-26 09:26:52'),
(324, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:26:52', '2024-03-26 09:26:52'),
(325, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-26 09:26:52', '2024-03-26 09:26:52'),
(326, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"8\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-26 09:38:12', '2024-03-26 09:38:12'),
(327, 'default', 'deleted', 'App\\Models\\StudentCourse', 7, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/course-delete\", \"action\": \"deleted\", \"browser\": \"Firefox\", \"item_id\": 7, \"ip_address\": \"::1\", \"new_values\": {\"id\": 7, \"course_id\": \"1\", \"created_at\": \"2024-03-26 11:26:52\", \"student_id\": \"1\", \"updated_at\": \"2024-03-26 11:26:52\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": {\"id\": 7, \"course_id\": \"1\", \"created_at\": \"2024-03-26T09:26:52.000000Z\", \"student_id\": \"1\", \"updated_at\": \"2024-03-26T09:26:52.000000Z\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}}', '2024-03-26 09:48:45', '2024-03-26 09:48:45'),
(328, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"9\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-26 09:49:14', '2024-03-26 09:49:14'),
(329, 'default', 'deleted', 'App\\Models\\StudentCourse', 13, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/course-delete\", \"action\": \"deleted\", \"browser\": \"Firefox\", \"item_id\": 13, \"ip_address\": \"::1\", \"new_values\": {\"id\": 13, \"course_id\": \"8\", \"created_at\": \"2024-03-26 11:38:12\", \"student_id\": \"1\", \"updated_at\": \"2024-03-26 11:38:12\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": {\"id\": 13, \"course_id\": \"8\", \"created_at\": \"2024-03-26T09:38:12.000000Z\", \"student_id\": \"1\", \"updated_at\": \"2024-03-26T09:38:12.000000Z\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"1\"}}', '2024-03-26 09:49:17', '2024-03-26 09:49:17'),
(330, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"213170\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"adf\"}, \"old_values\": []}', '2024-03-26 11:02:21', '2024-03-26 11:02:21'),
(331, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"213170\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"adf\"}, \"old_values\": []}', '2024-03-26 12:32:03', '2024-03-26 12:32:03'),
(332, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-03-26 12:32:03', '2024-03-26 12:32:03'),
(333, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-03-26 12:32:03', '2024-03-26 12:32:03'),
(334, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-03-26 12:32:03', '2024-03-26 12:32:03'),
(335, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"213170\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"nakambi\"}, \"old_values\": []}', '2024-03-26 12:33:04', '2024-03-26 12:33:04'),
(336, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-03-26 12:33:04', '2024-03-26 12:33:04'),
(337, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-03-26 12:33:04', '2024-03-26 12:33:04'),
(338, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-03-26 12:33:04', '2024-03-26 12:33:04'),
(339, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"447564\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-26 12:38:29', '2024-03-26 12:38:29'),
(340, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 4}, \"old_values\": []}', '2024-03-26 12:38:29', '2024-03-26 12:38:29'),
(341, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 4}, \"old_values\": []}', '2024-03-26 12:38:29', '2024-03-26 12:38:29'),
(342, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 4}, \"old_values\": []}', '2024-03-26 12:38:29', '2024-03-26 12:38:29'),
(343, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"540463\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-26 12:38:51', '2024-03-26 12:38:51'),
(344, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 5}, \"old_values\": []}', '2024-03-26 12:38:51', '2024-03-26 12:38:51'),
(345, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 5}, \"old_values\": []}', '2024-03-26 12:38:51', '2024-03-26 12:38:51'),
(346, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 5}, \"old_values\": []}', '2024-03-26 12:38:51', '2024-03-26 12:38:51'),
(347, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"762386\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"asdf\"}, \"old_values\": []}', '2024-03-26 12:39:24', '2024-03-26 12:39:24'),
(348, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 6}, \"old_values\": []}', '2024-03-26 12:39:24', '2024-03-26 12:39:24'),
(349, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 6}, \"old_values\": []}', '2024-03-26 12:39:24', '2024-03-26 12:39:24'),
(350, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 6}, \"old_values\": []}', '2024-03-26 12:39:24', '2024-03-26 12:39:24'),
(351, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"208351\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"first\"}, \"old_values\": []}', '2024-03-26 12:45:47', '2024-03-26 12:45:47'),
(352, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 7}, \"old_values\": []}', '2024-03-26 12:45:47', '2024-03-26 12:45:47'),
(353, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 7}, \"old_values\": []}', '2024-03-26 12:45:47', '2024-03-26 12:45:47'),
(354, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 7}, \"old_values\": []}', '2024-03-26 12:45:47', '2024-03-26 12:45:47'),
(355, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": \"911711\", \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"second\"}, \"old_values\": []}', '2024-03-26 12:46:09', '2024-03-26 12:46:09'),
(356, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 8}, \"old_values\": []}', '2024-03-26 12:46:09', '2024-03-26 12:46:09'),
(357, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 8}, \"old_values\": []}', '2024-03-26 12:46:09', '2024-03-26 12:46:09'),
(358, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 8}, \"old_values\": []}', '2024-03-26 12:46:09', '2024-03-26 12:46:09'),
(359, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 558289, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"first\"}, \"old_values\": []}', '2024-03-26 12:54:30', '2024-03-26 12:54:30'),
(360, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 9}, \"old_values\": []}', '2024-03-26 12:54:30', '2024-03-26 12:54:30'),
(361, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 9}, \"old_values\": []}', '2024-03-26 12:54:30', '2024-03-26 12:54:30'),
(362, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 9}, \"old_values\": []}', '2024-03-26 12:54:30', '2024-03-26 12:54:30'),
(363, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2100397009\", \"student_id\": 1, \"receipt_year\": null, \"receipt_amount\": \"1\", \"academic_session_id\": null, \"receipt_description\": \"1\"}, \"old_values\": []}', '2024-03-26 13:24:32', '2024-03-26 13:24:32'),
(364, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT3153363605\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1\", \"academic_session_id\": \"1\", \"receipt_description\": \"1\"}, \"old_values\": []}', '2024-03-26 13:26:14', '2024-03-26 13:26:14'),
(365, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"1\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"1\", \"reference_no\": \"17114595748tTPl2\", \"running_balance\": -1}, \"old_values\": []}', '2024-03-26 13:26:14', '2024-03-26 13:26:14'),
(366, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV5093468772\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-26 13:26:14', '2024-03-26 13:26:14'),
(367, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-26 13:26:14', '2024-03-26 13:26:14'),
(368, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-26 13:26:14', '2024-03-26 13:26:14'),
(369, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-26 13:26:14', '2024-03-26 13:26:14'),
(370, 'default', 'updated', 'App\\Models\\StudentProgress', 4, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 4, \"ip_address\": \"::1\", \"new_values\": {\"id\": 4, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26 11:26:52\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-26 11:26:52\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 4, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26T09:26:52.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-26T09:26:52.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-26 13:26:14', '2024-03-26 13:26:14'),
(371, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT7598395160\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"500\", \"academic_session_id\": \"1\", \"receipt_description\": \"second\"}, \"old_values\": []}', '2024-03-26 13:34:21', '2024-03-26 13:34:21'),
(372, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"500\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"second\", \"reference_no\": \"1711460061o3CWjJ\", \"running_balance\": -501}, \"old_values\": []}', '2024-03-26 13:34:21', '2024-03-26 13:34:21'),
(373, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5973705031\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1\", \"academic_session_id\": \"1\", \"receipt_description\": \"first\"}, \"old_values\": []}', '2024-03-26 14:49:42', '2024-03-26 14:49:42'),
(374, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV4819554573\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-26 14:49:42', '2024-03-26 14:49:42'),
(375, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-26 14:49:42', '2024-03-26 14:49:42'),
(376, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-26 14:49:42', '2024-03-26 14:49:42'),
(377, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-26 14:49:42', '2024-03-26 14:49:42'),
(378, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"1\", \"entry_type\": \"invoice\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"first\", \"reference_no\": \"1711464582gSD0Ww\", \"running_balance\": 2089}, \"old_values\": []}', '2024-03-26 14:49:42', '2024-03-26 14:49:42'),
(379, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT6806631168\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1\", \"academic_session_id\": \"1\", \"receipt_description\": \"fist\"}, \"old_values\": []}', '2024-03-26 15:04:08', '2024-03-26 15:04:08'),
(380, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV3373440214\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-26 15:04:08', '2024-03-26 15:04:08'),
(381, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 2}, \"old_values\": []}', '2024-03-26 15:04:08', '2024-03-26 15:04:08'),
(382, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 2}, \"old_values\": []}', '2024-03-26 15:04:08', '2024-03-26 15:04:08'),
(383, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 2}, \"old_values\": []}', '2024-03-26 15:04:08', '2024-03-26 15:04:08'),
(384, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"1\", \"entry_type\": \"invoice\", \"invoice_id\": 2, \"student_id\": 1, \"description\": \"fist\", \"reference_no\": \"1711465448qpqTq3\", \"running_balance\": 2090}, \"old_values\": []}', '2024-03-26 15:04:08', '2024-03-26 15:04:08'),
(385, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2089, \"credit\": \"1\", \"entry_type\": \"invoice\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"fist\", \"reference_no\": \"1711465448Aqu7rV\", \"running_balance\": 2089}, \"old_values\": []}', '2024-03-26 15:04:08', '2024-03-26 15:04:08'),
(386, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5371277185\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1\", \"academic_session_id\": \"1\", \"receipt_description\": \"df\"}, \"old_values\": []}', '2024-03-26 15:07:28', '2024-03-26 15:07:28'),
(387, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV1705541923\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-26 15:07:28', '2024-03-26 15:07:28'),
(388, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 3}, \"old_values\": []}', '2024-03-26 15:07:28', '2024-03-26 15:07:28'),
(389, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 3}, \"old_values\": []}', '2024-03-26 15:07:28', '2024-03-26 15:07:28'),
(390, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 3}, \"old_values\": []}', '2024-03-26 15:07:29', '2024-03-26 15:07:29'),
(391, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 3, \"student_id\": 1, \"description\": \"df\", \"reference_no\": \"1711465649P1cchb\", \"running_balance\": 2090}, \"old_values\": []}', '2024-03-26 15:07:29', '2024-03-26 15:07:29'),
(392, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2089, \"credit\": \"1\", \"entry_type\": \"receipt\", \"receipt_id\": 3, \"student_id\": 1, \"description\": \"df\", \"reference_no\": \"1711465649Jo72Ab\", \"running_balance\": 2089}, \"old_values\": []}', '2024-03-26 15:07:29', '2024-03-26 15:07:29'),
(393, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5115531093\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"500\", \"academic_session_id\": \"1\", \"receipt_description\": \"Tuition fee\"}, \"old_values\": []}', '2024-03-26 15:09:42', '2024-03-26 15:09:42'),
(394, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1589, \"credit\": \"500\", \"entry_type\": \"receipt\", \"receipt_id\": 4, \"student_id\": 1, \"description\": \"Tuition fee\", \"reference_no\": \"1711465782RlPNuw\", \"running_balance\": 1089}, \"old_values\": []}', '2024-03-26 15:09:42', '2024-03-26 15:09:42'),
(395, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT7090911481\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1\", \"academic_session_id\": \"1\", \"receipt_description\": \"sd\"}, \"old_values\": []}', '2024-03-26 15:14:00', '2024-03-26 15:14:00'),
(396, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV4183702735\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-26 15:14:00', '2024-03-26 15:14:00'),
(397, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 4}, \"old_values\": []}', '2024-03-26 15:14:00', '2024-03-26 15:14:00'),
(398, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 4}, \"old_values\": []}', '2024-03-26 15:14:00', '2024-03-26 15:14:00'),
(399, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 4}, \"old_values\": []}', '2024-03-26 15:14:00', '2024-03-26 15:14:00'),
(400, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 4, \"student_id\": 1, \"description\": \"sd\", \"reference_no\": \"171146604001cPm1\", \"running_balance\": 2090}, \"old_values\": []}', '2024-03-26 15:14:00', '2024-03-26 15:14:00'),
(401, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2089, \"credit\": \"1\", \"entry_type\": \"receipt\", \"receipt_id\": 5, \"student_id\": 1, \"description\": \"sd\", \"reference_no\": \"17114660404v932u\", \"running_balance\": 2089}, \"old_values\": []}', '2024-03-26 15:14:00', '2024-03-26 15:14:00'),
(402, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT7194561619\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"500\", \"academic_session_id\": \"1\", \"receipt_description\": \"Partial payment\"}, \"old_values\": []}', '2024-03-26 15:14:46', '2024-03-26 15:14:46'),
(403, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1589, \"credit\": \"500\", \"entry_type\": \"receipt\", \"receipt_id\": 6, \"student_id\": 1, \"description\": \"Partial payment\", \"reference_no\": \"17114660867zWrPO\", \"running_balance\": 1589}, \"old_values\": []}', '2024-03-26 15:14:46', '2024-03-26 15:14:46'),
(404, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2922306644\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1589\", \"academic_session_id\": \"1\", \"receipt_description\": \"xdxdx\"}, \"old_values\": []}', '2024-03-26 15:16:10', '2024-03-26 15:16:10'),
(405, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"1589\", \"entry_type\": \"receipt\", \"receipt_id\": 7, \"student_id\": 1, \"description\": \"xdxdx\", \"reference_no\": \"1711466170hygy5S\", \"running_balance\": 0}, \"old_values\": []}', '2024-03-26 15:16:10', '2024-03-26 15:16:10'),
(406, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2623162332\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"100\", \"academic_session_id\": \"1\", \"receipt_description\": \"third payment\"}, \"old_values\": []}', '2024-03-27 08:22:06', '2024-03-27 08:22:06'),
(407, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -100, \"credit\": \"100\", \"entry_type\": \"receipt\", \"receipt_id\": 8, \"student_id\": 1, \"description\": \"third payment\", \"reference_no\": \"1711527726YYCGFC\", \"running_balance\": -100}, \"old_values\": []}', '2024-03-27 08:22:06', '2024-03-27 08:22:06'),
(408, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT4778624940\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"150\", \"academic_session_id\": \"1\", \"receipt_description\": \"sec\"}, \"old_values\": []}', '2024-03-27 08:24:26', '2024-03-27 08:24:26'),
(409, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -250, \"credit\": \"150\", \"entry_type\": \"receipt\", \"receipt_id\": 9, \"student_id\": 1, \"description\": \"sec\", \"reference_no\": \"17115278666qntEn\", \"running_balance\": -250}, \"old_values\": []}', '2024-03-27 08:24:26', '2024-03-27 08:24:26'),
(410, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT7706964155\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"150\", \"academic_session_id\": \"1\", \"receipt_description\": \"sec\"}, \"old_values\": []}', '2024-03-27 08:25:10', '2024-03-27 08:25:10'),
(411, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -400, \"credit\": \"150\", \"entry_type\": \"receipt\", \"receipt_id\": 10, \"student_id\": 1, \"description\": \"sec\", \"reference_no\": \"1711527910Y33uXU\", \"running_balance\": -400}, \"old_values\": []}', '2024-03-27 08:25:10', '2024-03-27 08:25:10'),
(412, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT6498760792\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"150\", \"academic_session_id\": \"1\", \"receipt_description\": \"sec\"}, \"old_values\": []}', '2024-03-27 08:25:22', '2024-03-27 08:25:22'),
(413, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -550, \"credit\": \"150\", \"entry_type\": \"receipt\", \"receipt_id\": 11, \"student_id\": 1, \"description\": \"sec\", \"reference_no\": \"1711527922XVyd5l\", \"running_balance\": -550}, \"old_values\": []}', '2024-03-27 08:25:22', '2024-03-27 08:25:22'),
(414, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"1\", \"final_exam\": 55, \"student_id\": \"85163544\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-27 08:43:15', '2024-03-27 08:43:15'),
(415, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 1}, \"old_values\": []}', '2024-03-27 08:43:15', '2024-03-27 08:43:15'),
(416, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": null, \"program_id\": null, \"session_id\": null, \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-27 10:41:16', '2024-03-27 10:41:16'),
(417, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": null, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-27 10:42:55', '2024-03-27 10:42:55'),
(418, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-27 10:43:17', '2024-03-27 10:43:17');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(419, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26 10:09:09\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-26 10:09:09\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26T08:09:09.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-26T08:09:09.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-27 10:44:36', '2024-03-27 10:44:36'),
(420, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-27 10:44:36', '2024-03-27 10:44:36'),
(421, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26 10:09:09\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-27 12:44:36\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26T08:09:09.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-27T10:44:36.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-03-27 10:46:47', '2024-03-27 10:46:47'),
(422, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-27 10:46:47', '2024-03-27 10:46:47'),
(423, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26 10:09:09\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-27 12:46:47\", \"std_reg_status_id\": 8}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26T08:09:09.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-27T10:46:47.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-03-27 10:48:52', '2024-03-27 10:48:52'),
(424, 'default', 'created', 'App\\Models\\ProgramStructureDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program-structure-details/7?academic_path_detail_id=2&add=true&course_id=9&program_structure_id=7\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"9\", \"academic_year_id\": \"1\", \"academic_session_id\": \"2\", \"program_structure_id\": \"7\"}, \"old_values\": []}', '2024-03-27 10:53:26', '2024-03-27 10:53:26'),
(425, 'default', 'created', 'App\\Models\\ProgramStructureDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program-structure-details/7?academic_path_detail_id=2&add=true&course_id=6&program_structure_id=7\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"6\", \"academic_year_id\": \"1\", \"academic_session_id\": \"2\", \"program_structure_id\": \"7\"}, \"old_values\": []}', '2024-03-27 10:54:05', '2024-03-27 10:54:05'),
(426, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-27 11:04:36', '2024-03-27 11:04:36'),
(427, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-03-27 11:04:36', '2024-03-27 11:04:36'),
(428, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-03-27 11:04:36', '2024-03-27 11:04:36'),
(429, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26 10:09:09\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-27 12:48:52\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-26T08:09:09.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-27T10:48:52.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-03-27 11:04:36', '2024-03-27 11:04:36'),
(430, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"5\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-03-27 12:35:56', '2024-03-27 12:35:56'),
(431, 'default', 'created', 'App\\Models\\FeeSetup', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/store-fee-setup-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"entry_year\": \"2024\", \"program_id\": \"1\", \"minimum_amount\": \"900\", \"program_amount\": \"1600\", \"fee_category_id\": 2, \"fee_description\": \"Second session fees\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"2\", \"minimum_amount_type\": \"actual\"}, \"old_values\": []}', '2024-03-27 12:38:36', '2024-03-27 12:38:36'),
(432, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 424628, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"Second term\"}, \"old_values\": []}', '2024-03-27 12:50:11', '2024-03-27 12:50:11'),
(433, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT3721001482\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 550, \"academic_session_id\": null, \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 12:50:11', '2024-03-27 12:50:11'),
(434, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 132437, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"Second session\"}, \"old_values\": []}', '2024-03-27 12:52:29', '2024-03-27 12:52:29'),
(435, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 613152, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 13:46:01', '2024-03-27 13:46:01'),
(436, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 703678, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 13:47:30', '2024-03-27 13:47:30'),
(437, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 915817, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 13:47:58', '2024-03-27 13:47:58'),
(438, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT9724244791\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 550, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 13:47:58', '2024-03-27 13:47:58'),
(439, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV6497908660\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-27 13:47:58', '2024-03-27 13:47:58'),
(440, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 5, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"17115472781OjNIq\", \"running_balance\": 1600}, \"old_values\": []}', '2024-03-27 13:47:58', '2024-03-27 13:47:58'),
(441, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1050, \"credit\": 550, \"entry_type\": \"receipt\", \"receipt_id\": 12, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711547278xI9huv\", \"running_balance\": 1050}, \"old_values\": []}', '2024-03-27 13:47:58', '2024-03-27 13:47:58'),
(442, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 14}, \"old_values\": []}', '2024-03-27 13:47:58', '2024-03-27 13:47:58'),
(443, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 706349, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:07:07', '2024-03-27 14:07:07'),
(444, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2366586905\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 0, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 14:07:07', '2024-03-27 14:07:07'),
(445, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV3693533049\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-27 14:07:07', '2024-03-27 14:07:07'),
(446, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 6, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711548427ljuZgF\", \"running_balance\": 1600}, \"old_values\": []}', '2024-03-27 14:07:07', '2024-03-27 14:07:07'),
(447, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"receipt\", \"receipt_id\": 13, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"17115484279jETdC\", \"running_balance\": 1600}, \"old_values\": []}', '2024-03-27 14:07:07', '2024-03-27 14:07:07'),
(448, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 15}, \"old_values\": []}', '2024-03-27 14:07:07', '2024-03-27 14:07:07'),
(449, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 915253, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:31:37', '2024-03-27 14:31:37'),
(450, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT4939874443\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 0, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 14:31:37', '2024-03-27 14:31:37'),
(451, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"receipt\", \"receipt_id\": 14, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711549897Z5ygKt\", \"running_balance\": 1600}, \"old_values\": []}', '2024-03-27 14:31:37', '2024-03-27 14:31:37'),
(452, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 16}, \"old_values\": []}', '2024-03-27 14:31:37', '2024-03-27 14:31:37'),
(453, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 283676, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:33:13', '2024-03-27 14:33:13'),
(454, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 519349, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:34:07', '2024-03-27 14:34:07'),
(455, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 443730, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:34:39', '2024-03-27 14:34:39'),
(456, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 349738, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:35:44', '2024-03-27 14:35:44'),
(457, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 238106, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:36:37', '2024-03-27 14:36:37'),
(458, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 494745, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:36:55', '2024-03-27 14:36:55'),
(459, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 724158, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:37:37', '2024-03-27 14:37:37'),
(460, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 593710, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:38:10', '2024-03-27 14:38:10'),
(461, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 163262, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"second session\"}, \"old_values\": []}', '2024-03-27 14:39:13', '2024-03-27 14:39:13'),
(462, 'default', 'updated', 'App\\Models\\Balance', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"amount\": 0, \"created_at\": \"2024-03-27 10:25:22\", \"student_id\": 1, \"updated_at\": \"2024-03-27 10:25:22\"}, \"old_values\": {\"id\": 2, \"amount\": -550, \"created_at\": \"2024-03-27T08:25:22.000000Z\", \"student_id\": 1, \"updated_at\": \"2024-03-27T08:25:22.000000Z\"}}', '2024-03-27 14:39:13', '2024-03-27 14:39:13'),
(463, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT9049422269\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 550, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 14:39:13', '2024-03-27 14:39:13'),
(464, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV6655145257\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-27 14:39:13', '2024-03-27 14:39:13'),
(465, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 7, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711550353STdpyq\", \"running_balance\": 1600}, \"old_values\": []}', '2024-03-27 14:39:13', '2024-03-27 14:39:13'),
(466, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1050, \"credit\": 550, \"entry_type\": \"receipt\", \"receipt_id\": 15, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711550353XeVdXQ\", \"running_balance\": 1050}, \"old_values\": []}', '2024-03-27 14:39:13', '2024-03-27 14:39:13'),
(467, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 25}, \"old_values\": []}', '2024-03-27 14:39:13', '2024-03-27 14:39:13'),
(468, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 857397, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"sec\"}, \"old_values\": []}', '2024-03-27 14:42:10', '2024-03-27 14:42:10'),
(469, 'default', 'updated', 'App\\Models\\Balance', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"amount\": 0, \"created_at\": \"2024-03-27 10:25:22\", \"student_id\": 1, \"updated_at\": \"2024-03-27 16:39:13\"}, \"old_values\": {\"id\": 2, \"amount\": -550, \"created_at\": \"2024-03-27T08:25:22.000000Z\", \"student_id\": 1, \"updated_at\": \"2024-03-27T14:39:13.000000Z\"}}', '2024-03-27 14:42:10', '2024-03-27 14:42:10'),
(470, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT4429486199\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 550, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 14:42:10', '2024-03-27 14:42:10'),
(471, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV8832776091\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-27 14:42:10', '2024-03-27 14:42:10'),
(472, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 8, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711550530SbS8qG\", \"running_balance\": 1600}, \"old_values\": []}', '2024-03-27 14:42:10', '2024-03-27 14:42:10'),
(473, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1050, \"credit\": 550, \"entry_type\": \"receipt\", \"receipt_id\": 16, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711550530ZABMsn\", \"running_balance\": 1050}, \"old_values\": []}', '2024-03-27 14:42:10', '2024-03-27 14:42:10'),
(474, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 26}, \"old_values\": []}', '2024-03-27 14:42:10', '2024-03-27 14:42:10'),
(475, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 104889, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"sec\"}, \"old_values\": []}', '2024-03-27 14:47:46', '2024-03-27 14:47:46'),
(476, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 27}, \"old_values\": []}', '2024-03-27 14:47:46', '2024-03-27 14:47:46'),
(477, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 919645, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"sec\"}, \"old_values\": []}', '2024-03-27 14:48:54', '2024-03-27 14:48:54'),
(478, 'default', 'updated', 'App\\Models\\Balance', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"amount\": 0, \"created_at\": \"2024-03-27 10:25:22\", \"student_id\": 1, \"updated_at\": \"2024-03-27 16:42:10\"}, \"old_values\": {\"id\": 2, \"amount\": -550, \"created_at\": \"2024-03-27T08:25:22.000000Z\", \"student_id\": 1, \"updated_at\": \"2024-03-27T14:42:10.000000Z\"}}', '2024-03-27 14:48:54', '2024-03-27 14:48:54'),
(479, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT8851819314\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 550, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 14:48:54', '2024-03-27 14:48:54'),
(480, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 689520, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"sec\"}, \"old_values\": []}', '2024-03-27 14:50:26', '2024-03-27 14:50:26'),
(481, 'default', 'updated', 'App\\Models\\Balance', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"amount\": 0, \"created_at\": \"2024-03-27 10:25:22\", \"student_id\": 1, \"updated_at\": \"2024-03-27 16:48:54\"}, \"old_values\": {\"id\": 2, \"amount\": -550, \"created_at\": \"2024-03-27T08:25:22.000000Z\", \"student_id\": 1, \"updated_at\": \"2024-03-27T14:48:54.000000Z\"}}', '2024-03-27 14:50:26', '2024-03-27 14:50:26'),
(482, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5466781464\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 550, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 14:50:26', '2024-03-27 14:50:26'),
(483, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 888711, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"sec\"}, \"old_values\": []}', '2024-03-27 14:52:14', '2024-03-27 14:52:14'),
(484, 'default', 'updated', 'App\\Models\\Balance', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"amount\": 0, \"created_at\": \"2024-03-27 10:25:22\", \"student_id\": 1, \"updated_at\": \"2024-03-27 16:50:26\"}, \"old_values\": {\"id\": 2, \"amount\": -550, \"created_at\": \"2024-03-27T08:25:22.000000Z\", \"student_id\": 1, \"updated_at\": \"2024-03-27T14:50:26.000000Z\"}}', '2024-03-27 14:52:14', '2024-03-27 14:52:14'),
(485, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5847408909\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 550, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 14:52:14', '2024-03-27 14:52:14'),
(486, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 650521, \"quotation_year\": \"2024\", \"quotation_amount\": \"1620\", \"academic_session_id\": \"2\", \"quotation_description\": \"sec\"}, \"old_values\": []}', '2024-03-27 14:52:51', '2024-03-27 14:52:51'),
(487, 'default', 'updated', 'App\\Models\\Balance', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"amount\": 0, \"created_at\": \"2024-03-27 10:25:22\", \"student_id\": 1, \"updated_at\": \"2024-03-27 16:52:14\"}, \"old_values\": {\"id\": 2, \"amount\": -550, \"created_at\": \"2024-03-27T08:25:22.000000Z\", \"student_id\": 1, \"updated_at\": \"2024-03-27T14:52:14.000000Z\"}}', '2024-03-27 14:52:51', '2024-03-27 14:52:51'),
(488, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1711867875\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 550, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-27 14:52:52', '2024-03-27 14:52:52'),
(489, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV2151294218\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-27 14:52:52', '2024-03-27 14:52:52'),
(490, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 9, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711551172DB0HP2\", \"running_balance\": 1600}, \"old_values\": []}', '2024-03-27 14:52:52', '2024-03-27 14:52:52'),
(491, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1050, \"credit\": 550, \"entry_type\": \"receipt\", \"receipt_id\": 20, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711551172sf1cSw\", \"running_balance\": 1050}, \"old_values\": []}', '2024-03-27 14:52:52', '2024-03-27 14:52:52'),
(492, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 15, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"78510635\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-28 07:48:08', '2024-03-28 07:48:08'),
(493, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-28 07:48:09', '2024-03-28 07:48:09'),
(494, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 07:48:09', '2024-03-28 07:48:09'),
(495, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 07:48:09', '2024-03-28 07:48:09'),
(496, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 07:48:09', '2024-03-28 07:48:09'),
(497, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 07:48:09', '2024-03-28 07:48:09'),
(498, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 07:48:09', '2024-03-28 07:48:09'),
(499, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 304612, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"Term 1 quote\"}, \"old_values\": []}', '2024-03-28 07:49:14', '2024-03-28 07:49:14'),
(500, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-28 07:49:14', '2024-03-28 07:49:14'),
(501, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-28 07:49:14', '2024-03-28 07:49:14'),
(502, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-28 07:49:14', '2024-03-28 07:49:14'),
(503, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1258434510\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"500\", \"academic_session_id\": \"1\", \"receipt_description\": \"Fi\"}, \"old_values\": []}', '2024-03-28 07:56:45', '2024-03-28 07:56:45'),
(504, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV5657058198\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-28 07:56:45', '2024-03-28 07:56:45'),
(505, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-28 07:56:45', '2024-03-28 07:56:45'),
(506, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-28 07:56:45', '2024-03-28 07:56:45'),
(507, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-28 07:56:45', '2024-03-28 07:56:45'),
(508, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 1, \"student_id\": 1, \"description\": \"Fi\", \"reference_no\": \"1711612605LC8lNG\", \"running_balance\": 2090}, \"old_values\": []}', '2024-03-28 07:56:45', '2024-03-28 07:56:45'),
(509, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"500\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Fi\", \"reference_no\": \"1711612605CVubiT\", \"running_balance\": 1590}, \"old_values\": []}', '2024-03-28 07:56:45', '2024-03-28 07:56:45'),
(510, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 09:48:09\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28 09:48:09\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T07:48:09.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28T07:48:09.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-28 07:56:45', '2024-03-28 07:56:45'),
(511, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, NULL, NULL, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2449385727\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"500\", \"academic_session_id\": \"1\", \"receipt_description\": \"First Instalment\"}, \"old_values\": []}', '2024-03-28 10:25:45', '2024-03-28 10:25:45'),
(512, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT7892850748\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"500\", \"academic_session_id\": \"1\", \"receipt_description\": \"First instalment\"}, \"old_values\": []}', '2024-03-28 11:30:48', '2024-03-28 11:30:48'),
(513, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -500, \"credit\": \"500\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"First instalment\", \"reference_no\": \"1711625448hQkjAM\", \"running_balance\": -500}, \"old_values\": []}', '2024-03-28 11:30:48', '2024-03-28 11:30:48'),
(514, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 16, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"81718788\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-28 11:53:38', '2024-03-28 11:53:38'),
(515, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-28 11:53:38', '2024-03-28 11:53:38');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(516, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 11:53:38', '2024-03-28 11:53:38'),
(517, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 11:53:38', '2024-03-28 11:53:38'),
(518, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 11:53:38', '2024-03-28 11:53:38'),
(519, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 11:53:38', '2024-03-28 11:53:38'),
(520, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 11:53:38', '2024-03-28 11:53:38'),
(521, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 17, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"38445182\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-28 12:02:12', '2024-03-28 12:02:12'),
(522, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-28 12:02:12', '2024-03-28 12:02:12'),
(523, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 12:02:12', '2024-03-28 12:02:12'),
(524, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 12:02:12', '2024-03-28 12:02:12'),
(525, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 12:02:12', '2024-03-28 12:02:12'),
(526, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 12:02:12', '2024-03-28 12:02:12'),
(527, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 12:02:12', '2024-03-28 12:02:12'),
(528, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 831564, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"First quote\"}, \"old_values\": []}', '2024-03-28 12:02:39', '2024-03-28 12:02:39'),
(529, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-28 12:02:39', '2024-03-28 12:02:39'),
(530, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-28 12:02:39', '2024-03-28 12:02:39'),
(531, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-03-28 12:02:39', '2024-03-28 12:02:39'),
(532, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1589642764\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"500\", \"academic_session_id\": \"1\", \"receipt_description\": \"Partial payment\"}, \"old_values\": []}', '2024-03-28 12:35:02', '2024-03-28 12:35:02'),
(533, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV4536427556\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-28 12:35:02', '2024-03-28 12:35:02'),
(534, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-28 12:35:02', '2024-03-28 12:35:02'),
(535, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-28 12:35:02', '2024-03-28 12:35:02'),
(536, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-28 12:35:02', '2024-03-28 12:35:02'),
(537, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 1, \"student_id\": 1, \"description\": \"Partial payment\", \"reference_no\": \"1711629302LY0Dkw\", \"running_balance\": 2090}, \"old_values\": []}', '2024-03-28 12:35:02', '2024-03-28 12:35:02'),
(538, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"500\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Partial payment\", \"reference_no\": \"1711629302ve3vDv\", \"running_balance\": 1590}, \"old_values\": []}', '2024-03-28 12:35:02', '2024-03-28 12:35:02'),
(539, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1799216551\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1590\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-28 12:46:06', '2024-03-28 12:46:06'),
(540, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 500, \"credit\": \"1590\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711629966gNJaZg\", \"running_balance\": 500}, \"old_values\": []}', '2024-03-28 12:46:06', '2024-03-28 12:46:06'),
(541, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 14:02:12\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28 14:02:12\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T12:02:12.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28T12:02:12.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-28 12:46:06', '2024-03-28 12:46:06'),
(542, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT6218856682\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"500\", \"academic_session_id\": \"1\", \"receipt_description\": \"Partial payment\"}, \"old_values\": []}', '2024-03-28 13:01:12', '2024-03-28 13:01:12'),
(543, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV6811888829\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-28 13:01:12', '2024-03-28 13:01:12'),
(544, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-28 13:01:12', '2024-03-28 13:01:12'),
(545, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-28 13:01:12', '2024-03-28 13:01:12'),
(546, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-03-28 13:01:12', '2024-03-28 13:01:12'),
(547, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 1, \"student_id\": 1, \"description\": \"Partial payment\", \"reference_no\": \"1711630872GId52d\", \"running_balance\": 2090}, \"old_values\": []}', '2024-03-28 13:01:12', '2024-03-28 13:01:12'),
(548, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"500\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Partial payment\", \"reference_no\": \"1711630872HTtark\", \"running_balance\": 1590}, \"old_values\": []}', '2024-03-28 13:01:12', '2024-03-28 13:01:12'),
(549, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT8674968408\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1590\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-28 13:02:21', '2024-03-28 13:02:21'),
(550, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 500, \"credit\": \"1590\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711630941d8EAZj\", \"running_balance\": 500}, \"old_values\": []}', '2024-03-28 13:02:21', '2024-03-28 13:02:21'),
(551, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 14:02:12\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28 14:46:06\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T12:02:12.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28T12:46:06.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-28 13:02:21', '2024-03-28 13:02:21'),
(552, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2305730710\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1590\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-28 13:05:55', '2024-03-28 13:05:55'),
(553, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 500, \"credit\": \"1590\", \"entry_type\": \"receipt\", \"receipt_id\": 3, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711631155GHm52i\", \"running_balance\": 500}, \"old_values\": []}', '2024-03-28 13:05:55', '2024-03-28 13:05:55'),
(554, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 14:02:12\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28 15:02:21\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T12:02:12.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28T13:02:21.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-28 13:05:55', '2024-03-28 13:05:55'),
(555, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT3278000798\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1590\", \"academic_session_id\": \"1\", \"receipt_description\": \"f\"}, \"old_values\": []}', '2024-03-28 13:07:56', '2024-03-28 13:07:56'),
(556, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -1090, \"credit\": \"1590\", \"entry_type\": \"receipt\", \"receipt_id\": 4, \"student_id\": 1, \"description\": \"f\", \"reference_no\": \"1711631276zOvm4r\", \"running_balance\": -1090}, \"old_values\": []}', '2024-03-28 13:07:56', '2024-03-28 13:07:56'),
(557, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1930110130\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"324\", \"academic_session_id\": \"1\", \"receipt_description\": \"23\"}, \"old_values\": []}', '2024-03-28 13:12:47', '2024-03-28 13:12:47'),
(558, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT8594848458\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"324\", \"academic_session_id\": \"1\", \"receipt_description\": \"23\"}, \"old_values\": []}', '2024-03-28 13:13:50', '2024-03-28 13:13:50'),
(559, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT3797177179\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"324\", \"academic_session_id\": \"1\", \"receipt_description\": \"23\"}, \"old_values\": []}', '2024-03-28 13:15:31', '2024-03-28 13:15:31'),
(560, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1504979805\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1590\", \"academic_session_id\": \"1\", \"receipt_description\": \"Fi\"}, \"old_values\": []}', '2024-03-28 13:16:47', '2024-03-28 13:16:47'),
(561, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1039266799\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1590\", \"academic_session_id\": \"1\", \"receipt_description\": \"Final pay\"}, \"old_values\": []}', '2024-03-28 13:21:49', '2024-03-28 13:21:49'),
(562, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 500, \"credit\": \"1590\", \"entry_type\": \"receipt\", \"receipt_id\": 9, \"student_id\": 1, \"description\": \"Final pay\", \"reference_no\": \"1711632109NTlBoA\", \"running_balance\": 500}, \"old_values\": []}', '2024-03-28 13:21:49', '2024-03-28 13:21:49'),
(563, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 14:02:12\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28 15:05:55\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T12:02:12.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28T13:05:55.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-28 13:21:49', '2024-03-28 13:21:49'),
(564, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2650962440\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1590\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-03-28 13:23:35', '2024-03-28 13:23:35'),
(565, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": \"1590\", \"entry_type\": \"receipt\", \"receipt_id\": 10, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1711632215NiaZsG\", \"running_balance\": 0}, \"old_values\": []}', '2024-03-28 13:23:35', '2024-03-28 13:23:35'),
(566, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 14:02:12\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28 15:21:49\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T12:02:12.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28T13:21:49.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-28 13:23:35', '2024-03-28 13:23:35'),
(567, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5238061938\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1600\", \"academic_session_id\": \"1\", \"receipt_description\": \"Forward payment\"}, \"old_values\": []}', '2024-03-28 13:24:43', '2024-03-28 13:24:43'),
(568, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -1600, \"credit\": \"1600\", \"entry_type\": \"receipt\", \"receipt_id\": 11, \"student_id\": 1, \"description\": \"Forward payment\", \"reference_no\": \"1711632284tSfPvp\", \"running_balance\": -1600}, \"old_values\": []}', '2024-03-28 13:24:44', '2024-03-28 13:24:44'),
(569, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"1\", \"final_exam\": 55, \"student_id\": \"38445182\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-28 13:26:21', '2024-03-28 13:26:21'),
(570, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 1}, \"old_values\": []}', '2024-03-28 13:26:21', '2024-03-28 13:26:21'),
(571, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-03-28 13:26:44', '2024-03-28 13:26:44'),
(572, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-03-28 13:26:44', '2024-03-28 13:26:44'),
(573, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-03-28 13:26:44', '2024-03-28 13:26:44'),
(574, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 14:02:12\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28 15:23:35\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T12:02:12.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28T13:23:35.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-03-28 13:26:44', '2024-03-28 13:26:44'),
(575, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 473683, \"quotation_year\": \"2024\", \"quotation_amount\": \"1600\", \"academic_session_id\": \"2\", \"quotation_description\": \"Second session\"}, \"old_values\": []}', '2024-03-28 13:27:41', '2024-03-28 13:27:41'),
(576, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 1, \"quotation_no\": 652615, \"quotation_year\": \"2024\", \"quotation_amount\": \"1600\", \"academic_session_id\": \"2\", \"quotation_description\": \"Second session\"}, \"old_values\": []}', '2024-03-28 13:29:07', '2024-03-28 13:29:07'),
(577, 'default', 'updated', 'App\\Models\\Balance', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"amount\": 0, \"created_at\": \"2024-03-28 15:24:44\", \"student_id\": 1, \"updated_at\": \"2024-03-28 15:24:44\"}, \"old_values\": {\"id\": 3, \"amount\": -1600, \"created_at\": \"2024-03-28T13:24:44.000000Z\", \"student_id\": 1, \"updated_at\": \"2024-03-28T13:24:44.000000Z\"}}', '2024-03-28 13:29:07', '2024-03-28 13:29:07'),
(578, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT9905527625\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": 1600, \"academic_session_id\": \"2\", \"receipt_description\": \"Payment from previous year or session\"}, \"old_values\": []}', '2024-03-28 13:29:07', '2024-03-28 13:29:07'),
(579, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV1422498939\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-28 13:29:07', '2024-03-28 13:29:07'),
(580, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 2, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711632547vAuQyY\", \"running_balance\": 1600}, \"old_values\": []}', '2024-03-28 13:29:07', '2024-03-28 13:29:07'),
(581, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 0, \"credit\": 1600, \"entry_type\": \"receipt\", \"receipt_id\": 12, \"student_id\": 1, \"description\": \"Payment from previous year or session\", \"reference_no\": \"1711632547gsum4D\", \"running_balance\": 0}, \"old_values\": []}', '2024-03-28 13:29:07', '2024-03-28 13:29:07'),
(582, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 15:26:44\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28 15:26:44\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T13:26:44.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28T13:26:44.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-28 13:29:07', '2024-03-28 13:29:07'),
(583, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 18, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"24763888\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-03-28 13:33:27', '2024-03-28 13:33:27'),
(584, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 2, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-03-28 13:33:27', '2024-03-28 13:33:27'),
(585, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 13:33:27', '2024-03-28 13:33:27'),
(586, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 13:33:27', '2024-03-28 13:33:27'),
(587, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 13:33:27', '2024-03-28 13:33:27'),
(588, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 13:33:28', '2024-03-28 13:33:28'),
(589, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-03-28 13:33:28', '2024-03-28 13:33:28'),
(590, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"student_id\": 2, \"quotation_no\": 361140, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"new stud\"}, \"old_values\": []}', '2024-03-28 13:34:16', '2024-03-28 13:34:16'),
(591, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 4}, \"old_values\": []}', '2024-03-28 13:34:16', '2024-03-28 13:34:16'),
(592, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 4}, \"old_values\": []}', '2024-03-28 13:34:16', '2024-03-28 13:34:16'),
(593, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 4}, \"old_values\": []}', '2024-03-28 13:34:16', '2024-03-28 13:34:16'),
(594, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT3453098406\", \"student_id\": 2, \"receipt_year\": \"2024\", \"receipt_amount\": \"1000\", \"academic_session_id\": \"1\", \"receipt_description\": \"part pay\"}, \"old_values\": []}', '2024-03-28 13:35:03', '2024-03-28 13:35:03'),
(595, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV1027534694\", \"student_id\": 2, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-03-28 13:35:03', '2024-03-28 13:35:03'),
(596, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 3}, \"old_values\": []}', '2024-03-28 13:35:03', '2024-03-28 13:35:03'),
(597, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 3}, \"old_values\": []}', '2024-03-28 13:35:03', '2024-03-28 13:35:03'),
(598, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 3}, \"old_values\": []}', '2024-03-28 13:35:03', '2024-03-28 13:35:03'),
(599, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 3, \"student_id\": 2, \"description\": \"part pay\", \"reference_no\": \"1711632903H9pKwe\", \"running_balance\": 2090}, \"old_values\": []}', '2024-03-28 13:35:03', '2024-03-28 13:35:03'),
(600, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"1000\", \"entry_type\": \"receipt\", \"receipt_id\": 13, \"student_id\": 2, \"description\": \"part pay\", \"reference_no\": \"1711632903pDyBlG\", \"running_balance\": 1090}, \"old_values\": []}', '2024-03-28 13:35:03', '2024-03-28 13:35:03'),
(601, 'default', 'updated', 'App\\Models\\StudentProgress', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 15:33:27\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"2\", \"updated_at\": \"2024-03-28 15:33:27\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 3, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T13:33:27.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"2\", \"updated_at\": \"2024-03-28T13:33:27.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-03-28 13:35:03', '2024-03-28 13:35:03'),
(602, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"1\", \"final_exam\": 55, \"student_id\": \"24763888\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-03-28 13:42:13', '2024-03-28 13:42:13'),
(603, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 2}, \"old_values\": []}', '2024-03-28 13:42:13', '2024-03-28 13:42:13'),
(604, 'default', 'updated', 'App\\Models\\StudentMarking', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"ca_exam\": 4, \"course_id\": \"1\", \"created_at\": \"2024-03-28 15:42:13\", \"final_exam\": 15, \"student_id\": \"24763888\", \"updated_at\": \"2024-03-28 15:42:13\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-03-28T13:42:13.000000Z\", \"final_exam\": \"55\", \"student_id\": 24763888, \"updated_at\": \"2024-03-28T13:42:13.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-03-28 13:42:54', '2024-03-28 13:42:54'),
(605, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"mark\": 19, \"grade\": \"F\", \"created_at\": \"2024-03-28 15:42:13\", \"updated_at\": \"2024-03-28 15:42:13\", \"student_marking_id\": 2}, \"old_values\": {\"id\": 2, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-03-28T13:42:13.000000Z\", \"updated_at\": \"2024-03-28T13:42:13.000000Z\", \"student_marking_id\": 2}}', '2024-03-28 13:42:54', '2024-03-28 13:42:54'),
(606, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28 14:02:12\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28 15:26:44\", \"std_reg_status_id\": 8}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-03-28T12:02:12.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-03-28T13:26:44.000000Z\", \"std_reg_status_id\": \"7\"}}', '2024-03-28 13:44:05', '2024-03-28 13:44:05'),
(607, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 19, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"30015266\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-04-02 09:05:07', '2024-04-02 09:05:07'),
(608, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-04-02 09:05:07', '2024-04-02 09:05:07'),
(609, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:05:07', '2024-04-02 09:05:07'),
(610, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:05:07', '2024-04-02 09:05:07'),
(611, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:05:07', '2024-04-02 09:05:07'),
(612, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:05:07', '2024-04-02 09:05:07'),
(613, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:05:07', '2024-04-02 09:05:07');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(614, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 509822, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"first quote\"}, \"old_values\": []}', '2024-04-02 09:05:53', '2024-04-02 09:05:53'),
(615, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-02 09:05:53', '2024-04-02 09:05:53'),
(616, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-02 09:05:53', '2024-04-02 09:05:53'),
(617, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-02 09:05:53', '2024-04-02 09:05:53'),
(618, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 4, \"course_id\": \"1\", \"final_exam\": 5, \"student_id\": \"30015266\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-02 09:07:53', '2024-04-02 09:07:53'),
(619, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 9, \"grade\": \"F\", \"student_marking_id\": 1}, \"old_values\": []}', '2024-04-02 09:07:53', '2024-04-02 09:07:53'),
(620, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT6384810076\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Partial payment\"}, \"old_values\": []}', '2024-04-02 09:09:53', '2024-04-02 09:09:53'),
(621, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV8593017772\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-02 09:09:53', '2024-04-02 09:09:53'),
(622, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2255231263\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Partial payment\"}, \"old_values\": []}', '2024-04-02 09:11:35', '2024-04-02 09:11:35'),
(623, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -2090, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Partial payment\", \"reference_no\": \"17120490957ODzCD\", \"running_balance\": -2090}, \"old_values\": []}', '2024-04-02 09:11:35', '2024-04-02 09:11:35'),
(624, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 20, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"30939838\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-04-02 09:14:25', '2024-04-02 09:14:25'),
(625, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-04-02 09:14:25', '2024-04-02 09:14:25'),
(626, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:14:25', '2024-04-02 09:14:25'),
(627, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:14:25', '2024-04-02 09:14:25'),
(628, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:14:26', '2024-04-02 09:14:26'),
(629, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:14:26', '2024-04-02 09:14:26'),
(630, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 09:14:26', '2024-04-02 09:14:26'),
(631, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 159082, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"first quote\"}, \"old_values\": []}', '2024-04-02 09:14:57', '2024-04-02 09:14:57'),
(632, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-02 09:14:57', '2024-04-02 09:14:57'),
(633, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-02 09:14:57', '2024-04-02 09:14:57'),
(634, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-02 09:14:57', '2024-04-02 09:14:57'),
(635, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2561339977\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-02 09:15:13', '2024-04-02 09:15:13'),
(636, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV7003860518\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-02 09:15:13', '2024-04-02 09:15:13'),
(637, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT7680834978\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-02 09:16:07', '2024-04-02 09:16:07'),
(638, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -2090, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1712049367nQFyPw\", \"running_balance\": -2090}, \"old_values\": []}', '2024-04-02 09:16:07', '2024-04-02 09:16:07'),
(639, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT4872527550\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-02 09:21:56', '2024-04-02 09:21:56'),
(640, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -4180, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1712049716yFNmbd\", \"running_balance\": -4180}, \"old_values\": []}', '2024-04-02 09:21:56', '2024-04-02 09:21:56'),
(641, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5735207266\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-02 09:25:15', '2024-04-02 09:25:15'),
(642, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -2090, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1712049915HtY3G1\", \"running_balance\": -2090}, \"old_values\": []}', '2024-04-02 09:25:15', '2024-04-02 09:25:15'),
(643, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02 11:14:25\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-02 11:14:25\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02T09:14:25.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-02T09:14:25.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-02 09:25:15', '2024-04-02 09:25:15'),
(644, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2481144958\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-02 09:28:04', '2024-04-02 09:28:04'),
(645, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV4741174945\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-02 09:28:04', '2024-04-02 09:28:04'),
(646, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5169496147\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-02 09:32:04', '2024-04-02 09:32:04'),
(647, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV1007880235\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-02 09:32:04', '2024-04-02 09:32:04'),
(648, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2351603841\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-02 09:35:12', '2024-04-02 09:35:12'),
(649, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV9120959974\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-02 09:35:12', '2024-04-02 09:35:12'),
(650, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 4}, \"old_values\": []}', '2024-04-02 09:35:12', '2024-04-02 09:35:12'),
(651, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 4}, \"old_values\": []}', '2024-04-02 09:35:12', '2024-04-02 09:35:12'),
(652, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 4}, \"old_values\": []}', '2024-04-02 09:35:12', '2024-04-02 09:35:12'),
(653, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 4, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1712050512mAUVsZ\", \"running_balance\": 2090}, \"old_values\": []}', '2024-04-02 09:35:12', '2024-04-02 09:35:12'),
(654, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 5, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1712050512BoaaEz\", \"running_balance\": 0}, \"old_values\": []}', '2024-04-02 09:35:12', '2024-04-02 09:35:12'),
(655, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 4, \"course_id\": \"1\", \"final_exam\": 5, \"student_id\": \"30939838\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-02 09:40:39', '2024-04-02 09:40:39'),
(656, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 9, \"grade\": \"F\", \"student_marking_id\": 1}, \"old_values\": []}', '2024-04-02 09:40:39', '2024-04-02 09:40:39'),
(657, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 34, \"course_id\": \"2\", \"final_exam\": 65, \"student_id\": \"30939838\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-02 10:26:58', '2024-04-02 10:26:58'),
(658, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 99, \"grade\": \"A+\", \"student_marking_id\": 2}, \"old_values\": []}', '2024-04-02 10:26:58', '2024-04-02 10:26:58'),
(659, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 4, \"course_id\": \"4\", \"final_exam\": 25, \"student_id\": \"30939838\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-02 10:45:57', '2024-04-02 10:45:57'),
(660, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 29, \"grade\": \"F\", \"student_marking_id\": 3}, \"old_values\": []}', '2024-04-02 10:45:57', '2024-04-02 10:45:57'),
(661, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02 11:14:25\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-02 11:25:15\", \"std_reg_status_id\": 8}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02T09:14:25.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-02T09:25:15.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-02 10:48:37', '2024-04-02 10:48:37'),
(662, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 505486, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"repeatee\"}, \"old_values\": []}', '2024-04-02 10:51:51', '2024-04-02 10:51:51'),
(663, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-04-02 10:51:51', '2024-04-02 10:51:51'),
(664, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-04-02 10:51:51', '2024-04-02 10:51:51'),
(665, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 2}, \"old_values\": []}', '2024-04-02 10:51:51', '2024-04-02 10:51:51'),
(666, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT9581268397\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1000\", \"academic_session_id\": \"1\", \"receipt_description\": \"Partial payment\"}, \"old_values\": []}', '2024-04-02 10:53:41', '2024-04-02 10:53:41'),
(667, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": -1000, \"credit\": \"1000\", \"entry_type\": \"receipt\", \"receipt_id\": 6, \"student_id\": 1, \"description\": \"Partial payment\", \"reference_no\": \"1712055221CKMzDV\", \"running_balance\": -1000}, \"old_values\": []}', '2024-04-02 10:53:41', '2024-04-02 10:53:41'),
(668, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02 11:14:25\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-02 12:48:37\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02T09:14:25.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-02T10:48:37.000000Z\", \"std_reg_status_id\": \"8\"}}', '2024-04-02 10:53:41', '2024-04-02 10:53:41'),
(669, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 21, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"64031548\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-04-02 11:47:25', '2024-04-02 11:47:25'),
(670, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 2, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-04-02 11:47:25', '2024-04-02 11:47:25'),
(671, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 11:47:25', '2024-04-02 11:47:25'),
(672, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 11:47:25', '2024-04-02 11:47:25'),
(673, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 11:47:25', '2024-04-02 11:47:25'),
(674, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 11:47:25', '2024-04-02 11:47:25'),
(675, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-02 11:47:25', '2024-04-02 11:47:25'),
(676, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 2, \"quotation_no\": 421633, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"chi fresher\"}, \"old_values\": []}', '2024-04-02 11:47:57', '2024-04-02 11:47:57'),
(677, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-04-02 11:47:57', '2024-04-02 11:47:57'),
(678, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-04-02 11:47:57', '2024-04-02 11:47:57'),
(679, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 3}, \"old_values\": []}', '2024-04-02 11:47:57', '2024-04-02 11:47:57'),
(680, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1272487982\", \"student_id\": 2, \"receipt_year\": \"2024\", \"receipt_amount\": \"3000\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-02 11:49:46', '2024-04-02 11:49:46'),
(681, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV3900954001\", \"student_id\": 2, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-02 11:49:46', '2024-04-02 11:49:46'),
(682, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 5}, \"old_values\": []}', '2024-04-02 11:49:46', '2024-04-02 11:49:46'),
(683, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 5}, \"old_values\": []}', '2024-04-02 11:49:46', '2024-04-02 11:49:46'),
(684, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 5}, \"old_values\": []}', '2024-04-02 11:49:46', '2024-04-02 11:49:46'),
(685, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 5, \"student_id\": 2, \"description\": \"Full payment\", \"reference_no\": \"1712058586SzE7VU\", \"running_balance\": 2090}, \"old_values\": []}', '2024-04-02 11:49:46', '2024-04-02 11:49:46'),
(686, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"3000\", \"entry_type\": \"receipt\", \"receipt_id\": 7, \"student_id\": 2, \"description\": \"Full payment\", \"reference_no\": \"1712058586ZY7XES\", \"running_balance\": -910}, \"old_values\": []}', '2024-04-02 11:49:46', '2024-04-02 11:49:46'),
(687, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02 13:47:25\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"2\", \"updated_at\": \"2024-04-02 13:47:25\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02T11:47:25.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"2\", \"updated_at\": \"2024-04-02T11:47:25.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-02 11:49:46', '2024-04-02 11:49:46'),
(688, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 34, \"course_id\": \"1\", \"final_exam\": 55, \"student_id\": \"64031548\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-02 11:51:45', '2024-04-02 11:51:45'),
(689, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 89, \"grade\": \"A+\", \"student_marking_id\": 4}, \"old_values\": []}', '2024-04-02 11:51:45', '2024-04-02 11:51:45'),
(690, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 34, \"course_id\": \"2\", \"final_exam\": 55, \"student_id\": \"64031548\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-02 11:51:56', '2024-04-02 11:51:56'),
(691, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 89, \"grade\": \"A+\", \"student_marking_id\": 5}, \"old_values\": []}', '2024-04-02 11:51:57', '2024-04-02 11:51:57'),
(692, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02 11:14:25\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-02 12:53:41\", \"std_reg_status_id\": 8}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02T09:14:25.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-02T10:53:41.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-02 11:52:12', '2024-04-02 11:52:12'),
(693, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02 13:47:25\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"2\", \"updated_at\": \"2024-04-02 13:49:46\", \"std_reg_status_id\": 8}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02T11:47:25.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"2\", \"updated_at\": \"2024-04-02T11:49:46.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-02 11:52:12', '2024-04-02 11:52:12'),
(694, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 2, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-02 21:11:29', '2024-04-02 21:11:29'),
(695, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-02 21:11:29', '2024-04-02 21:11:29'),
(696, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 2, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-02 21:11:29', '2024-04-02 21:11:29'),
(697, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02 13:47:25\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"2\", \"updated_at\": \"2024-04-02 13:52:12\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-02T11:47:25.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"2\", \"updated_at\": \"2024-04-02T11:52:12.000000Z\", \"std_reg_status_id\": \"8\"}}', '2024-04-02 21:11:29', '2024-04-02 21:11:29'),
(698, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 22, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"32148952\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-04-03 09:05:40', '2024-04-03 09:05:40'),
(699, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-04-03 09:05:40', '2024-04-03 09:05:40'),
(700, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-03 09:05:40', '2024-04-03 09:05:40'),
(701, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-03 09:05:40', '2024-04-03 09:05:40'),
(702, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-03 09:05:40', '2024-04-03 09:05:40'),
(703, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-03 09:05:40', '2024-04-03 09:05:40'),
(704, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-03 09:05:40', '2024-04-03 09:05:40'),
(705, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 755266, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"first quote\"}, \"old_values\": []}', '2024-04-03 09:06:11', '2024-04-03 09:06:11'),
(706, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-03 09:06:11', '2024-04-03 09:06:11'),
(707, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-03 09:06:12', '2024-04-03 09:06:12'),
(708, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-03 09:06:12', '2024-04-03 09:06:12'),
(709, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5423263167\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-03 09:06:42', '2024-04-03 09:06:42'),
(710, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV9077193227\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-03 09:06:42', '2024-04-03 09:06:42'),
(711, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-03 09:06:42', '2024-04-03 09:06:42'),
(712, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-03 09:06:42', '2024-04-03 09:06:42'),
(713, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-03 09:06:42', '2024-04-03 09:06:42'),
(714, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"17121352021fo9jc\", \"running_balance\": 2090}, \"old_values\": []}', '2024-04-03 09:06:42', '2024-04-03 09:06:42'),
(715, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1712135202DSwf0y\", \"running_balance\": 0}, \"old_values\": []}', '2024-04-03 09:06:42', '2024-04-03 09:06:42');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(716, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-03 11:05:40\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-03 11:05:40\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-03T09:05:40.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-03T09:05:40.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-03 09:06:42', '2024-04-03 09:06:42'),
(717, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 34, \"course_id\": \"1\", \"final_exam\": 55, \"student_id\": \"32148952\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-03 09:07:40', '2024-04-03 09:07:40'),
(718, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 89, \"grade\": \"A+\", \"student_marking_id\": 1}, \"old_values\": []}', '2024-04-03 09:07:40', '2024-04-03 09:07:40'),
(719, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-03 09:11:13', '2024-04-03 09:11:13'),
(720, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-03 09:11:13', '2024-04-03 09:11:13'),
(721, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-03 09:11:13', '2024-04-03 09:11:13'),
(722, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-03 11:05:40\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-03 11:06:42\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-03T09:05:40.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-03T09:06:42.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-03 09:11:13', '2024-04-03 09:11:13'),
(723, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 527124, \"quotation_year\": \"2024\", \"quotation_amount\": \"1600\", \"academic_session_id\": \"2\", \"quotation_description\": \"second quotation\"}, \"old_values\": []}', '2024-04-03 09:11:54', '2024-04-03 09:11:54'),
(724, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT1790149047\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1600\", \"academic_session_id\": \"2\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-03 09:12:30', '2024-04-03 09:12:30'),
(725, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV3180229771\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-03 09:12:31', '2024-04-03 09:12:31'),
(726, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1712135551mknFgJ\", \"running_balance\": 1600}, \"old_values\": []}', '2024-04-03 09:12:31', '2024-04-03 09:12:31'),
(727, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": \"1600\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1712135551fpg12x\", \"running_balance\": 0}, \"old_values\": []}', '2024-04-03 09:12:31', '2024-04-03 09:12:31'),
(728, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-03 11:11:13\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-03 11:11:13\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-03T09:11:13.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-03T09:11:13.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-03 09:12:31', '2024-04-03 09:12:31'),
(729, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 23, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"47208621\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-04-16 03:55:40', '2024-04-16 03:55:40'),
(730, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-04-16 03:55:40', '2024-04-16 03:55:40'),
(731, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 03:55:40', '2024-04-16 03:55:40'),
(732, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 03:55:40', '2024-04-16 03:55:40'),
(733, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 03:55:40', '2024-04-16 03:55:40'),
(734, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 03:55:40', '2024-04-16 03:55:40'),
(735, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 03:55:40', '2024-04-16 03:55:40'),
(736, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 635024, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"first quote\"}, \"old_values\": []}', '2024-04-16 03:56:02', '2024-04-16 03:56:02'),
(737, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-16 03:56:02', '2024-04-16 03:56:02'),
(738, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-16 03:56:02', '2024-04-16 03:56:02'),
(739, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-16 03:56:02', '2024-04-16 03:56:02'),
(740, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT8824397976\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"3100\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-16 03:56:44', '2024-04-16 03:56:44'),
(741, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT4309353273\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"3100\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-16 03:57:33', '2024-04-16 03:57:33'),
(742, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV8267515701\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-16 03:57:33', '2024-04-16 03:57:33'),
(743, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-16 03:57:34', '2024-04-16 03:57:34'),
(744, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-16 03:57:34', '2024-04-16 03:57:34'),
(745, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-16 03:57:34', '2024-04-16 03:57:34'),
(746, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713207454csXfiu\", \"running_balance\": 2090}, \"old_values\": []}', '2024-04-16 03:57:34', '2024-04-16 03:57:34'),
(747, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"3100\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713207454vN7YgV\", \"running_balance\": -1010}, \"old_values\": []}', '2024-04-16 03:57:34', '2024-04-16 03:57:34'),
(748, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 20:55:40\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15 20:55:40\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T18:55:40.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T18:55:40.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-16 03:57:34', '2024-04-16 03:57:34'),
(749, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT7612398115\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"3100\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-16 03:59:26', '2024-04-16 03:59:26'),
(750, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV4120259070\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-16 03:59:26', '2024-04-16 03:59:26'),
(751, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 2}, \"old_values\": []}', '2024-04-16 03:59:26', '2024-04-16 03:59:26'),
(752, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 2}, \"old_values\": []}', '2024-04-16 03:59:26', '2024-04-16 03:59:26'),
(753, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 2}, \"old_values\": []}', '2024-04-16 03:59:26', '2024-04-16 03:59:26'),
(754, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713207566pPmvdn\", \"running_balance\": 2090}, \"old_values\": []}', '2024-04-16 03:59:26', '2024-04-16 03:59:26'),
(755, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"3100\", \"entry_type\": \"receipt\", \"receipt_id\": 3, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713207566xa8k0Q\", \"running_balance\": -1010}, \"old_values\": []}', '2024-04-16 03:59:26', '2024-04-16 03:59:26'),
(756, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 20:55:40\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15 20:57:34\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T18:55:40.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T18:57:34.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-16 03:59:26', '2024-04-16 03:59:26'),
(757, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 24, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"24502369\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-04-16 04:01:07', '2024-04-16 04:01:07'),
(758, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-04-16 04:01:07', '2024-04-16 04:01:07'),
(759, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:07', '2024-04-16 04:01:07'),
(760, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:07', '2024-04-16 04:01:07'),
(761, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:07', '2024-04-16 04:01:07'),
(762, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:07', '2024-04-16 04:01:07'),
(763, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:07', '2024-04-16 04:01:07'),
(764, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 435955, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"First payment\"}, \"old_values\": []}', '2024-04-16 04:01:32', '2024-04-16 04:01:32'),
(765, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:32', '2024-04-16 04:01:32'),
(766, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:32', '2024-04-16 04:01:32'),
(767, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:32', '2024-04-16 04:01:32'),
(768, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2896117067\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"3100\", \"academic_session_id\": \"1\", \"receipt_description\": \"First payment\"}, \"old_values\": []}', '2024-04-16 04:01:53', '2024-04-16 04:01:53'),
(769, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV3035818037\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-16 04:01:53', '2024-04-16 04:01:53'),
(770, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:53', '2024-04-16 04:01:53'),
(771, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:53', '2024-04-16 04:01:53'),
(772, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-16 04:01:53', '2024-04-16 04:01:53'),
(773, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 1, \"student_id\": 1, \"description\": \"First payment\", \"reference_no\": \"1713207713Dktwrb\", \"running_balance\": 2090}, \"old_values\": []}', '2024-04-16 04:01:53', '2024-04-16 04:01:53'),
(774, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"3100\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"First payment\", \"reference_no\": \"1713207713xALIkc\", \"running_balance\": -1010}, \"old_values\": []}', '2024-04-16 04:01:53', '2024-04-16 04:01:53'),
(775, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 21:01:07\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15 21:01:07\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T19:01:07.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T19:01:07.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-16 04:01:53', '2024-04-16 04:01:53'),
(776, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"1\", \"final_exam\": 55, \"student_id\": \"24502369\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-16 04:02:50', '2024-04-16 04:02:50'),
(777, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 1}, \"old_values\": []}', '2024-04-16 04:02:50', '2024-04-16 04:02:50'),
(778, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"2\", \"final_exam\": 55, \"student_id\": \"24502369\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-16 04:02:59', '2024-04-16 04:02:59'),
(779, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 2}, \"old_values\": []}', '2024-04-16 04:02:59', '2024-04-16 04:02:59'),
(780, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"3\", \"final_exam\": 55, \"student_id\": \"24502369\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-16 04:03:06', '2024-04-16 04:03:06'),
(781, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 3}, \"old_values\": []}', '2024-04-16 04:03:06', '2024-04-16 04:03:06'),
(782, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 04:04:33', '2024-04-16 04:04:33'),
(783, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 04:04:33', '2024-04-16 04:04:33'),
(784, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 04:04:33', '2024-04-16 04:04:33'),
(785, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 21:01:07\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15 21:01:53\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T19:01:07.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T19:01:53.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-16 04:04:33', '2024-04-16 04:04:33'),
(786, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 423099, \"quotation_year\": \"2024\", \"quotation_amount\": \"1600\", \"academic_session_id\": \"2\", \"quotation_description\": \"second quote\"}, \"old_values\": []}', '2024-04-16 04:05:00', '2024-04-16 04:05:00'),
(787, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV1790294606\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"invoice\"}, \"old_values\": []}', '2024-04-16 04:05:00', '2024-04-16 04:05:00'),
(788, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 2, \"student_id\": 1, \"description\": \"invoice\", \"reference_no\": \"1713207900VLvtqO\", \"running_balance\": 590}, \"old_values\": []}', '2024-04-16 04:05:00', '2024-04-16 04:05:00'),
(789, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 21:04:33\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15 21:04:33\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T19:04:33.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T19:04:33.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-16 04:05:00', '2024-04-16 04:05:00'),
(790, 'default', 'updated', 'App\\Models\\Balance', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"amount\": \"590\", \"created_at\": \"2024-04-15 12:01:53\", \"student_id\": 1, \"updated_at\": \"2024-04-15 12:01:53\"}, \"old_values\": {\"id\": 1, \"amount\": -1010, \"created_at\": \"2024-04-15T10:01:53.000000Z\", \"student_id\": 1, \"updated_at\": \"2024-04-15T10:01:53.000000Z\"}}', '2024-04-16 04:05:00', '2024-04-16 04:05:00'),
(791, 'default', 'updated', 'App\\Models\\StudentMarking', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-15 21:02:50\", \"final_exam\": \"15\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-15 21:02:50\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-15T19:02:50.000000Z\", \"final_exam\": \"55\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T19:02:50.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 04:30:56', '2024-04-16 04:30:56'),
(792, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-15 21:02:50\", \"updated_at\": \"2024-04-15 21:02:50\", \"student_marking_id\": 1}, \"old_values\": {\"id\": 1, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-15T19:02:50.000000Z\", \"updated_at\": \"2024-04-15T19:02:50.000000Z\", \"student_marking_id\": 1}}', '2024-04-16 04:30:56', '2024-04-16 04:30:56'),
(793, 'default', 'updated', 'App\\Models\\StudentMarking', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-15 21:02:59\", \"final_exam\": \"15\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-15 21:02:59\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-15T19:02:59.000000Z\", \"final_exam\": \"55\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T19:02:59.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 04:30:59', '2024-04-16 04:30:59'),
(794, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-15 21:02:59\", \"updated_at\": \"2024-04-15 21:02:59\", \"student_marking_id\": 2}, \"old_values\": {\"id\": 2, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-15T19:02:59.000000Z\", \"updated_at\": \"2024-04-15T19:02:59.000000Z\", \"student_marking_id\": 2}}', '2024-04-16 04:30:59', '2024-04-16 04:30:59'),
(795, 'default', 'updated', 'App\\Models\\StudentMarking', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"ca_exam\": \"24\", \"course_id\": 3, \"created_at\": \"2024-04-15 21:03:06\", \"final_exam\": \"15\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-15 21:03:06\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 3, \"ca_exam\": \"24\", \"course_id\": 3, \"created_at\": \"2024-04-15T19:03:06.000000Z\", \"final_exam\": \"55\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T19:03:06.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 04:31:02', '2024-04-16 04:31:02'),
(796, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-15 21:03:06\", \"updated_at\": \"2024-04-15 21:03:06\", \"student_marking_id\": 3}, \"old_values\": {\"id\": 3, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-15T19:03:06.000000Z\", \"updated_at\": \"2024-04-15T19:03:06.000000Z\", \"student_marking_id\": 3}}', '2024-04-16 04:31:02', '2024-04-16 04:31:02'),
(797, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 21:01:07\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15 21:04:33\", \"std_reg_status_id\": 8}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T19:01:07.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T19:04:33.000000Z\", \"std_reg_status_id\": \"7\"}}', '2024-04-16 04:42:00', '2024-04-16 04:42:00'),
(798, 'default', 'updated', 'App\\Models\\StudentMarking', 1, NULL, NULL, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-15 21:02:50\", \"final_exam\": \"55\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-15 21:30:56\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-15T19:02:50.000000Z\", \"final_exam\": \"15\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T19:30:56.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 07:34:07', '2024-04-16 07:34:07'),
(799, 'default', 'updated', 'App\\Models\\StudentMarking', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-15 21:02:50\", \"final_exam\": \"55\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-15 21:30:56\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-15T19:02:50.000000Z\", \"final_exam\": \"15\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T19:30:56.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 07:34:47', '2024-04-16 07:34:47'),
(800, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"mark\": 79, \"grade\": \"B+\", \"created_at\": \"2024-04-15 21:02:50\", \"updated_at\": \"2024-04-15 21:30:56\", \"student_marking_id\": 1}, \"old_values\": {\"id\": 1, \"mark\": \"39\", \"grade\": \"F\", \"created_at\": \"2024-04-15T19:02:50.000000Z\", \"updated_at\": \"2024-04-15T19:30:56.000000Z\", \"student_marking_id\": 1}}', '2024-04-16 07:34:47', '2024-04-16 07:34:47'),
(801, 'default', 'updated', 'App\\Models\\StudentMarking', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-15 21:02:59\", \"final_exam\": \"55\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-15 21:30:59\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-15T19:02:59.000000Z\", \"final_exam\": \"15\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T19:30:59.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 07:34:55', '2024-04-16 07:34:55'),
(802, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"mark\": 79, \"grade\": \"B+\", \"created_at\": \"2024-04-15 21:02:59\", \"updated_at\": \"2024-04-15 21:30:59\", \"student_marking_id\": 2}, \"old_values\": {\"id\": 2, \"mark\": \"39\", \"grade\": \"F\", \"created_at\": \"2024-04-15T19:02:59.000000Z\", \"updated_at\": \"2024-04-15T19:30:59.000000Z\", \"student_marking_id\": 2}}', '2024-04-16 07:34:55', '2024-04-16 07:34:55'),
(803, 'default', 'updated', 'App\\Models\\StudentMarking', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"ca_exam\": \"24\", \"course_id\": 3, \"created_at\": \"2024-04-15 21:03:06\", \"final_exam\": \"55\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-15 21:31:02\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 3, \"ca_exam\": \"24\", \"course_id\": 3, \"created_at\": \"2024-04-15T19:03:06.000000Z\", \"final_exam\": \"15\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T19:31:02.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 07:35:00', '2024-04-16 07:35:00'),
(804, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"mark\": 79, \"grade\": \"B+\", \"created_at\": \"2024-04-15 21:03:06\", \"updated_at\": \"2024-04-15 21:31:02\", \"student_marking_id\": 3}, \"old_values\": {\"id\": 3, \"mark\": \"39\", \"grade\": \"F\", \"created_at\": \"2024-04-15T19:03:06.000000Z\", \"updated_at\": \"2024-04-15T19:31:02.000000Z\", \"student_marking_id\": 3}}', '2024-04-16 07:35:00', '2024-04-16 07:35:00'),
(805, 'default', 'updated', 'App\\Models\\StudentMarking', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"ca_exam\": \"24\", \"course_id\": 3, \"created_at\": \"2024-04-15 21:03:06\", \"final_exam\": \"15\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-16 00:35:00\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 3, \"ca_exam\": \"24\", \"course_id\": 3, \"created_at\": \"2024-04-15T19:03:06.000000Z\", \"final_exam\": \"55\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T22:35:00.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 07:35:08', '2024-04-16 07:35:08'),
(806, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-15 21:03:06\", \"updated_at\": \"2024-04-16 00:35:00\", \"student_marking_id\": 3}, \"old_values\": {\"id\": 3, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-15T19:03:06.000000Z\", \"updated_at\": \"2024-04-15T22:35:00.000000Z\", \"student_marking_id\": 3}}', '2024-04-16 07:35:08', '2024-04-16 07:35:08'),
(807, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 07:36:31', '2024-04-16 07:36:31');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(808, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": null, \"course_status_id\": 1, \"academic_session_id\": null}, \"old_values\": []}', '2024-04-16 07:36:31', '2024-04-16 07:36:31'),
(809, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 07:36:59', '2024-04-16 07:36:59'),
(810, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 07:37:21', '2024-04-16 07:37:21'),
(811, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-16 07:37:22', '2024-04-16 07:37:22'),
(812, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 07:37:22', '2024-04-16 07:37:22'),
(813, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 07:37:22', '2024-04-16 07:37:22'),
(814, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 21:01:07\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15 21:42:00\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T19:01:07.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T19:42:00.000000Z\", \"std_reg_status_id\": \"8\"}}', '2024-04-16 07:37:22', '2024-04-16 07:37:22'),
(815, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 07:38:26', '2024-04-16 07:38:26'),
(816, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-16 07:38:26', '2024-04-16 07:38:26'),
(817, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 07:38:26', '2024-04-16 07:38:26'),
(818, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 07:38:26', '2024-04-16 07:38:26'),
(819, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 07:39:43', '2024-04-16 07:39:43'),
(820, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 07:40:05', '2024-04-16 07:40:05'),
(821, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 07:40:37', '2024-04-16 07:40:37'),
(822, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 07:42:17', '2024-04-16 07:42:17'),
(823, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 07:43:35', '2024-04-16 07:43:35'),
(824, 'default', 'updated', 'App\\Models\\StudentMarking', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-15 21:02:59\", \"final_exam\": \"15\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-16 00:34:55\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-15T19:02:59.000000Z\", \"final_exam\": \"55\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T22:34:55.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 07:45:01', '2024-04-16 07:45:01'),
(825, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-15 21:02:59\", \"updated_at\": \"2024-04-16 00:34:55\", \"student_marking_id\": 2}, \"old_values\": {\"id\": 2, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-15T19:02:59.000000Z\", \"updated_at\": \"2024-04-15T22:34:55.000000Z\", \"student_marking_id\": 2}}', '2024-04-16 07:45:01', '2024-04-16 07:45:01'),
(826, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 21:01:07\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 00:37:22\", \"std_reg_status_id\": 8}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T19:01:07.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T22:37:22.000000Z\", \"std_reg_status_id\": \"7\"}}', '2024-04-16 07:46:46', '2024-04-16 07:46:46'),
(827, 'default', 'updated', 'App\\Models\\StudentMarking', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-15 21:02:59\", \"final_exam\": \"55\", \"student_id\": \"24502369\", \"updated_at\": \"2024-04-16 00:45:01\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-15T19:02:59.000000Z\", \"final_exam\": \"15\", \"student_id\": 24502369, \"updated_at\": \"2024-04-15T22:45:01.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-16 15:38:15', '2024-04-16 15:38:15'),
(828, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"mark\": 79, \"grade\": \"B+\", \"created_at\": \"2024-04-15 21:02:59\", \"updated_at\": \"2024-04-16 00:45:01\", \"student_marking_id\": 2}, \"old_values\": {\"id\": 2, \"mark\": \"39\", \"grade\": \"F\", \"created_at\": \"2024-04-15T19:02:59.000000Z\", \"updated_at\": \"2024-04-15T22:45:01.000000Z\", \"student_marking_id\": 2}}', '2024-04-16 15:38:15', '2024-04-16 15:38:15'),
(829, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 15:38:21', '2024-04-16 15:38:21'),
(830, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 15:39:02', '2024-04-16 15:39:02'),
(831, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-16 15:39:02', '2024-04-16 15:39:02'),
(832, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 15:39:02', '2024-04-16 15:39:02'),
(833, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 15:39:02', '2024-04-16 15:39:02'),
(834, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 21:01:07\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 00:46:46\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T19:01:07.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T22:46:46.000000Z\", \"std_reg_status_id\": \"8\"}}', '2024-04-16 15:39:02', '2024-04-16 15:39:02'),
(835, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-16 15:39:59', '2024-04-16 15:39:59'),
(836, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-16 15:39:59', '2024-04-16 15:39:59'),
(837, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 15:39:59', '2024-04-16 15:39:59'),
(838, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-16 15:39:59', '2024-04-16 15:39:59'),
(839, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT7365046682\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"590\", \"academic_session_id\": \"2\", \"receipt_description\": \"Final pay\"}, \"old_values\": []}', '2024-04-16 16:06:56', '2024-04-16 16:06:56'),
(840, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": \"590\", \"credit\": \"590\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Final pay\", \"reference_no\": \"1713251216WYrsTf\", \"running_balance\": 0}, \"old_values\": []}', '2024-04-16 16:06:56', '2024-04-16 16:06:56'),
(841, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15 21:04:33\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15 21:05:00\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-15T19:04:33.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-15T19:05:00.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-16 16:06:56', '2024-04-16 16:06:56'),
(842, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 25, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"55880594\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-04-17 00:38:13', '2024-04-17 00:38:13'),
(843, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-04-17 00:38:13', '2024-04-17 00:38:13'),
(844, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 00:38:13', '2024-04-17 00:38:13'),
(845, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 00:38:13', '2024-04-17 00:38:13'),
(846, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 00:38:13', '2024-04-17 00:38:13'),
(847, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 00:38:13', '2024-04-17 00:38:13'),
(848, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 00:38:13', '2024-04-17 00:38:13'),
(849, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 574142, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"dsd\"}, \"old_values\": []}', '2024-04-17 00:38:27', '2024-04-17 00:38:27'),
(850, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-17 00:38:27', '2024-04-17 00:38:27'),
(851, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-17 00:38:27', '2024-04-17 00:38:27'),
(852, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-17 00:38:28', '2024-04-17 00:38:28'),
(853, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT8227608399\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-17 00:39:15', '2024-04-17 00:39:15'),
(854, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV4606941799\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-17 00:39:15', '2024-04-17 00:39:15'),
(855, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-17 00:39:15', '2024-04-17 00:39:15'),
(856, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-17 00:39:15', '2024-04-17 00:39:15'),
(857, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-17 00:39:15', '2024-04-17 00:39:15'),
(858, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713281955yomxTW\", \"running_balance\": 2090}, \"old_values\": []}', '2024-04-17 00:39:15', '2024-04-17 00:39:15'),
(859, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713281955m4Z2PJ\", \"running_balance\": 0}, \"old_values\": []}', '2024-04-17 00:39:15', '2024-04-17 00:39:15'),
(860, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 17:38:13\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 17:38:13\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T15:38:13.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16T15:38:13.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 00:39:15', '2024-04-17 00:39:15'),
(861, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"1\", \"final_exam\": 55, \"student_id\": \"55880594\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 00:45:43', '2024-04-17 00:45:43'),
(862, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 1}, \"old_values\": []}', '2024-04-17 00:45:43', '2024-04-17 00:45:43'),
(863, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"2\", \"final_exam\": 55, \"student_id\": \"55880594\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 00:45:53', '2024-04-17 00:45:53'),
(864, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 2}, \"old_values\": []}', '2024-04-17 00:45:53', '2024-04-17 00:45:53'),
(865, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"3\", \"final_exam\": 55, \"student_id\": \"55880594\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 00:46:00', '2024-04-17 00:46:00'),
(866, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 3}, \"old_values\": []}', '2024-04-17 00:46:00', '2024-04-17 00:46:00'),
(867, 'default', 'updated', 'App\\Models\\StudentMarking', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"ca_exam\": \"24\", \"course_id\": 3, \"created_at\": \"2024-04-16 17:46:00\", \"final_exam\": \"15\", \"student_id\": \"55880594\", \"updated_at\": \"2024-04-16 17:46:00\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 3, \"ca_exam\": \"24\", \"course_id\": 3, \"created_at\": \"2024-04-16T15:46:00.000000Z\", \"final_exam\": \"55\", \"student_id\": 55880594, \"updated_at\": \"2024-04-16T15:46:00.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-17 00:46:13', '2024-04-17 00:46:13'),
(868, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-16 17:46:00\", \"updated_at\": \"2024-04-16 17:46:00\", \"student_marking_id\": 3}, \"old_values\": {\"id\": 3, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-16T15:46:00.000000Z\", \"updated_at\": \"2024-04-16T15:46:00.000000Z\", \"student_marking_id\": 3}}', '2024-04-17 00:46:13', '2024-04-17 00:46:13'),
(869, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 00:47:26', '2024-04-17 00:47:26'),
(870, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 00:47:26', '2024-04-17 00:47:26'),
(871, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:47:26', '2024-04-17 00:47:26'),
(872, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:47:26', '2024-04-17 00:47:26'),
(873, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 17:38:13\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 17:39:15\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T15:38:13.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16T15:39:15.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-17 00:47:26', '2024-04-17 00:47:26'),
(874, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 00:48:35', '2024-04-17 00:48:35'),
(875, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 00:48:35', '2024-04-17 00:48:35'),
(876, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:48:35', '2024-04-17 00:48:35'),
(877, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:48:35', '2024-04-17 00:48:35'),
(878, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 00:48:50', '2024-04-17 00:48:50'),
(879, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 00:48:50', '2024-04-17 00:48:50'),
(880, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:48:50', '2024-04-17 00:48:50'),
(881, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:48:50', '2024-04-17 00:48:50'),
(882, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 00:49:21', '2024-04-17 00:49:21'),
(883, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 00:50:47', '2024-04-17 00:50:47'),
(884, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 00:51:21', '2024-04-17 00:51:21'),
(885, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 00:51:21', '2024-04-17 00:51:21'),
(886, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:51:21', '2024-04-17 00:51:21'),
(887, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:51:21', '2024-04-17 00:51:21'),
(888, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 00:52:24', '2024-04-17 00:52:24'),
(889, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 00:52:24', '2024-04-17 00:52:24'),
(890, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 00:54:15', '2024-04-17 00:54:15'),
(891, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 00:54:15', '2024-04-17 00:54:15'),
(892, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 00:56:55', '2024-04-17 00:56:55'),
(893, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 00:56:55', '2024-04-17 00:56:55'),
(894, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:56:55', '2024-04-17 00:56:55'),
(895, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 00:56:55', '2024-04-17 00:56:55'),
(896, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 238695, \"quotation_year\": \"2024\", \"quotation_amount\": \"1600\", \"academic_session_id\": \"2\", \"quotation_description\": \"second term\"}, \"old_values\": []}', '2024-04-17 01:46:51', '2024-04-17 01:46:51'),
(897, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"6\", \"final_exam\": 55, \"student_id\": \"55880594\", \"academic_year_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 01:47:27', '2024-04-17 01:47:27'),
(898, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 4}, \"old_values\": []}', '2024-04-17 01:47:27', '2024-04-17 01:47:27'),
(899, 'default', 'updated', 'App\\Models\\StudentMarking', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"ca_exam\": 24, \"course_id\": \"3\", \"created_at\": \"2024-04-16 17:46:00\", \"final_exam\": 55, \"student_id\": \"55880594\", \"updated_at\": \"2024-04-16 17:46:13\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": {\"id\": 3, \"ca_exam\": \"24\", \"course_id\": 3, \"created_at\": \"2024-04-16T15:46:00.000000Z\", \"final_exam\": \"15\", \"student_id\": 55880594, \"updated_at\": \"2024-04-16T15:46:13.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-17 01:47:36', '2024-04-17 01:47:36'),
(900, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"mark\": 79, \"grade\": \"B+\", \"created_at\": \"2024-04-16 17:46:00\", \"updated_at\": \"2024-04-16 17:46:13\", \"student_marking_id\": 3}, \"old_values\": {\"id\": 3, \"mark\": \"39\", \"grade\": \"F\", \"created_at\": \"2024-04-16T15:46:00.000000Z\", \"updated_at\": \"2024-04-16T15:46:13.000000Z\", \"student_marking_id\": 3}}', '2024-04-17 01:47:36', '2024-04-17 01:47:36'),
(901, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"3\", \"final_exam\": 55, \"student_id\": \"55880594\", \"academic_year_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 01:47:52', '2024-04-17 01:47:52'),
(902, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 5}, \"old_values\": []}', '2024-04-17 01:47:53', '2024-04-17 01:47:53'),
(903, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"9\", \"final_exam\": 55, \"student_id\": \"55880594\", \"academic_year_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 01:48:39', '2024-04-17 01:48:39'),
(904, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 6}, \"old_values\": []}', '2024-04-17 01:48:39', '2024-04-17 01:48:39'),
(905, 'default', 'updated', 'App\\Models\\StudentMarking', 4, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 4, \"ip_address\": \"::1\", \"new_values\": {\"id\": 4, \"ca_exam\": \"24\", \"course_id\": 6, \"created_at\": \"2024-04-16 18:47:27\", \"final_exam\": \"2\\\\5\", \"student_id\": \"55880594\", \"updated_at\": \"2024-04-16 18:47:27\", \"academic_year_id\": 1, \"academic_session_id\": 2}, \"old_values\": {\"id\": 4, \"ca_exam\": \"24\", \"course_id\": 6, \"created_at\": \"2024-04-16T16:47:27.000000Z\", \"final_exam\": \"55\", \"student_id\": 55880594, \"updated_at\": \"2024-04-16T16:47:27.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 2}}', '2024-04-17 01:49:19', '2024-04-17 01:49:19');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(906, 'default', 'updated', 'App\\Models\\StudentMarking', 4, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 4, \"ip_address\": \"::1\", \"new_values\": {\"id\": 4, \"ca_exam\": \"24\", \"course_id\": 6, \"created_at\": \"2024-04-16 18:47:27\", \"final_exam\": \"25\", \"student_id\": \"55880594\", \"updated_at\": \"2024-04-16 18:49:19\", \"academic_year_id\": 1, \"academic_session_id\": 2}, \"old_values\": {\"id\": 4, \"ca_exam\": \"24\", \"course_id\": 6, \"created_at\": \"2024-04-16T16:47:27.000000Z\", \"final_exam\": \"2\\\\5\", \"student_id\": 55880594, \"updated_at\": \"2024-04-16T16:49:19.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 2}}', '2024-04-17 01:49:23', '2024-04-17 01:49:23'),
(907, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 4, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 4, \"ip_address\": \"::1\", \"new_values\": {\"id\": 4, \"mark\": 49, \"grade\": \"C\", \"created_at\": \"2024-04-16 18:47:27\", \"updated_at\": \"2024-04-16 18:47:27\", \"student_marking_id\": 4}, \"old_values\": {\"id\": 4, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-16T16:47:27.000000Z\", \"updated_at\": \"2024-04-16T16:47:27.000000Z\", \"student_marking_id\": 4}}', '2024-04-17 01:49:23', '2024-04-17 01:49:23'),
(908, 'default', 'updated', 'App\\Models\\StudentMarking', 4, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 4, \"ip_address\": \"::1\", \"new_values\": {\"id\": 4, \"ca_exam\": \"24\", \"course_id\": 6, \"created_at\": \"2024-04-16 18:47:27\", \"final_exam\": \"15\", \"student_id\": \"55880594\", \"updated_at\": \"2024-04-16 18:49:23\", \"academic_year_id\": 1, \"academic_session_id\": 2}, \"old_values\": {\"id\": 4, \"ca_exam\": \"24\", \"course_id\": 6, \"created_at\": \"2024-04-16T16:47:27.000000Z\", \"final_exam\": \"25\", \"student_id\": 55880594, \"updated_at\": \"2024-04-16T16:49:23.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 2}}', '2024-04-17 01:49:27', '2024-04-17 01:49:27'),
(909, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 4, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 4, \"ip_address\": \"::1\", \"new_values\": {\"id\": 4, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-16 18:47:27\", \"updated_at\": \"2024-04-16 18:49:23\", \"student_marking_id\": 4}, \"old_values\": {\"id\": 4, \"mark\": \"49\", \"grade\": \"C\", \"created_at\": \"2024-04-16T16:47:27.000000Z\", \"updated_at\": \"2024-04-16T16:49:23.000000Z\", \"student_marking_id\": 4}}', '2024-04-17 01:49:27', '2024-04-17 01:49:27'),
(910, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"3\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 01:50:02', '2024-04-17 01:50:02'),
(911, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 1, \"academic_session_id\": \"3\"}, \"old_values\": []}', '2024-04-17 01:50:02', '2024-04-17 01:50:02'),
(912, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 17:47:26\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 17:47:26\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T15:47:26.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16T15:47:26.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 01:50:02', '2024-04-17 01:50:02'),
(913, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"3\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 01:52:40', '2024-04-17 01:52:40'),
(914, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 26, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"33015400\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-04-17 03:16:08', '2024-04-17 03:16:08'),
(915, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-04-17 03:16:08', '2024-04-17 03:16:08'),
(916, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:16:08', '2024-04-17 03:16:08'),
(917, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:16:08', '2024-04-17 03:16:08'),
(918, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:16:08', '2024-04-17 03:16:08'),
(919, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:16:08', '2024-04-17 03:16:08'),
(920, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:16:08', '2024-04-17 03:16:08'),
(921, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 105222, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"first quote\"}, \"old_values\": []}', '2024-04-17 03:16:33', '2024-04-17 03:16:33'),
(922, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-17 03:16:33', '2024-04-17 03:16:33'),
(923, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-17 03:16:33', '2024-04-17 03:16:33'),
(924, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-17 03:16:33', '2024-04-17 03:16:33'),
(925, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT4065306425\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"2090\", \"academic_session_id\": \"1\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-17 03:18:10', '2024-04-17 03:18:10'),
(926, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV4384419399\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-17 03:18:11', '2024-04-17 03:18:11'),
(927, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-17 03:18:11', '2024-04-17 03:18:11'),
(928, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-17 03:18:11', '2024-04-17 03:18:11'),
(929, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-17 03:18:11', '2024-04-17 03:18:11'),
(930, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713291491Cgk26B\", \"running_balance\": 2090}, \"old_values\": []}', '2024-04-17 03:18:11', '2024-04-17 03:18:11'),
(931, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"2090\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713291491CEnfIL\", \"running_balance\": 0}, \"old_values\": []}', '2024-04-17 03:18:11', '2024-04-17 03:18:11'),
(932, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 20:16:08\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 20:16:08\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T18:16:08.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16T18:16:08.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 03:18:11', '2024-04-17 03:18:11'),
(933, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"1\", \"final_exam\": 55, \"student_id\": \"33015400\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 03:18:57', '2024-04-17 03:18:57'),
(934, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 1}, \"old_values\": []}', '2024-04-17 03:18:57', '2024-04-17 03:18:57'),
(935, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"2\", \"final_exam\": 55, \"student_id\": \"33015400\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 03:19:04', '2024-04-17 03:19:04'),
(936, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 2}, \"old_values\": []}', '2024-04-17 03:19:05', '2024-04-17 03:19:05'),
(937, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"3\", \"final_exam\": 55, \"student_id\": \"33015400\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 03:19:10', '2024-04-17 03:19:10'),
(938, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 3}, \"old_values\": []}', '2024-04-17 03:19:10', '2024-04-17 03:19:10'),
(939, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"4\", \"final_exam\": 55, \"student_id\": \"33015400\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 03:19:17', '2024-04-17 03:19:17'),
(940, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 4}, \"old_values\": []}', '2024-04-17 03:19:17', '2024-04-17 03:19:17'),
(941, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"5\", \"final_exam\": 55, \"student_id\": \"33015400\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 03:19:28', '2024-04-17 03:19:28'),
(942, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 5}, \"old_values\": []}', '2024-04-17 03:19:28', '2024-04-17 03:19:28'),
(943, 'default', 'updated', 'App\\Models\\StudentMarking', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-16 20:18:57\", \"final_exam\": \"15\", \"student_id\": \"33015400\", \"updated_at\": \"2024-04-16 20:18:57\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-16T18:18:57.000000Z\", \"final_exam\": \"55\", \"student_id\": 33015400, \"updated_at\": \"2024-04-16T18:18:57.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-17 03:20:00', '2024-04-17 03:20:00'),
(944, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-16 20:18:57\", \"updated_at\": \"2024-04-16 20:18:57\", \"student_marking_id\": 1}, \"old_values\": {\"id\": 1, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-16T18:18:57.000000Z\", \"updated_at\": \"2024-04-16T18:18:57.000000Z\", \"student_marking_id\": 1}}', '2024-04-17 03:20:00', '2024-04-17 03:20:00'),
(945, 'default', 'updated', 'App\\Models\\StudentMarking', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-16 20:19:05\", \"final_exam\": \"15\", \"student_id\": \"33015400\", \"updated_at\": \"2024-04-16 20:19:05\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 2, \"ca_exam\": \"24\", \"course_id\": 2, \"created_at\": \"2024-04-16T18:19:05.000000Z\", \"final_exam\": \"55\", \"student_id\": 33015400, \"updated_at\": \"2024-04-16T18:19:05.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-17 03:20:04', '2024-04-17 03:20:04'),
(946, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-16 20:19:05\", \"updated_at\": \"2024-04-16 20:19:05\", \"student_marking_id\": 2}, \"old_values\": {\"id\": 2, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-16T18:19:05.000000Z\", \"updated_at\": \"2024-04-16T18:19:05.000000Z\", \"student_marking_id\": 2}}', '2024-04-17 03:20:04', '2024-04-17 03:20:04'),
(947, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 03:25:04', '2024-04-17 03:25:04'),
(948, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 03:27:21', '2024-04-17 03:27:21'),
(949, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 3, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 03:27:21', '2024-04-17 03:27:21'),
(950, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 3, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 03:27:21', '2024-04-17 03:27:21'),
(951, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 03:27:21', '2024-04-17 03:27:21'),
(952, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 03:27:21', '2024-04-17 03:27:21'),
(953, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 20:16:08\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 20:18:11\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T18:16:08.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16T18:18:11.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-17 03:27:21', '2024-04-17 03:27:21'),
(954, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 544570, \"quotation_year\": \"2024\", \"quotation_amount\": \"1600\", \"academic_session_id\": \"2\", \"quotation_description\": \"second quote\"}, \"old_values\": []}', '2024-04-17 03:27:59', '2024-04-17 03:27:59'),
(955, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT3684582359\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1600\", \"academic_session_id\": \"2\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-17 03:28:19', '2024-04-17 03:28:19'),
(956, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV2988844448\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-17 03:28:19', '2024-04-17 03:28:19'),
(957, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713292099FztnL0\", \"running_balance\": 1600}, \"old_values\": []}', '2024-04-17 03:28:19', '2024-04-17 03:28:19'),
(958, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": \"1600\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713292099THFRe4\", \"running_balance\": 0}, \"old_values\": []}', '2024-04-17 03:28:19', '2024-04-17 03:28:19'),
(959, 'default', 'updated', 'App\\Models\\StudentProgress', 3, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 3, \"ip_address\": \"::1\", \"new_values\": {\"id\": 3, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 20:27:21\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 20:27:21\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 3, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T18:27:21.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16T18:27:21.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 03:28:19', '2024-04-17 03:28:19'),
(960, 'default', 'created', 'App\\Models\\Student', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": 27, \"entry_year\": \"2024\", \"program_id\": 1, \"student_no\": \"62400824\", \"student_status\": \"active\"}, \"old_values\": []}', '2024-04-17 03:44:40', '2024-04-17 03:44:40'),
(961, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"1\", \"student_id\": 1, \"std_reg_status_id\": \"1\"}, \"old_values\": []}', '2024-04-17 03:44:40', '2024-04-17 03:44:40'),
(962, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:44:40', '2024-04-17 03:44:40'),
(963, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 2, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:44:40', '2024-04-17 03:44:40'),
(964, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 3, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:44:40', '2024-04-17 03:44:40'),
(965, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 4, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:44:40', '2024-04-17 03:44:40'),
(966, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/student-activation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 5, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 1}, \"old_values\": []}', '2024-04-17 03:44:40', '2024-04-17 03:44:40'),
(967, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 772725, \"quotation_year\": \"2024\", \"quotation_amount\": \"2090\", \"academic_session_id\": \"1\", \"quotation_description\": \"First session quotation\"}, \"old_values\": []}', '2024-04-17 04:09:37', '2024-04-17 04:09:37'),
(968, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 1, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-17 04:09:37', '2024-04-17 04:09:37'),
(969, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 10, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-17 04:09:37', '2024-04-17 04:09:37'),
(970, 'default', 'created', 'App\\Models\\StudentQuotationDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1, \"fee_type_id\": 3, \"student_quotation_id\": 1}, \"old_values\": []}', '2024-04-17 04:09:37', '2024-04-17 04:09:37'),
(971, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT2729196631\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"900\", \"academic_session_id\": \"1\", \"receipt_description\": \"tutition\"}, \"old_values\": []}', '2024-04-17 04:13:47', '2024-04-17 04:13:47'),
(972, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV4893421377\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 2090, \"invoice_type_id\": 1, \"academic_session_id\": 1, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-17 04:13:48', '2024-04-17 04:13:48'),
(973, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 1, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-17 04:13:48', '2024-04-17 04:13:48'),
(974, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 10, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-17 04:13:48', '2024-04-17 04:13:48'),
(975, 'default', 'created', 'App\\Models\\StudentInvoiceDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_type_id\": 3, \"student_invoice_id\": 1}, \"old_values\": []}', '2024-04-17 04:13:48', '2024-04-17 04:13:48'),
(976, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 1, \"student_id\": 1, \"description\": \"tutition\", \"reference_no\": \"1713294828MJmZmQ\", \"running_balance\": 2090}, \"old_values\": []}', '2024-04-17 04:13:48', '2024-04-17 04:13:48'),
(977, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 2090, \"credit\": \"900\", \"entry_type\": \"receipt\", \"receipt_id\": 1, \"student_id\": 1, \"description\": \"tutition\", \"reference_no\": \"1713294828TzZFF3\", \"running_balance\": 1190}, \"old_values\": []}', '2024-04-17 04:13:48', '2024-04-17 04:13:48'),
(978, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT5395718635\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1100\", \"academic_session_id\": \"1\", \"receipt_description\": \"tution 2\"}, \"old_values\": []}', '2024-04-17 04:16:11', '2024-04-17 04:16:11'),
(979, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": \"1190\", \"credit\": \"1100\", \"entry_type\": \"receipt\", \"receipt_id\": 2, \"student_id\": 1, \"description\": \"tution 2\", \"reference_no\": \"1713294971Zf13DP\", \"running_balance\": 90}, \"old_values\": []}', '2024-04-17 04:16:11', '2024-04-17 04:16:11'),
(980, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 20:44:40\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 20:44:40\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T18:44:40.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16T18:44:40.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 04:16:11', '2024-04-17 04:16:11'),
(981, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"1\", \"final_exam\": 55, \"student_id\": \"62400824\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 04:17:35', '2024-04-17 04:17:35'),
(982, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 1}, \"old_values\": []}', '2024-04-17 04:17:35', '2024-04-17 04:17:35'),
(983, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"2\", \"final_exam\": 55, \"student_id\": \"62400824\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 04:17:41', '2024-04-17 04:17:41'),
(984, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 2}, \"old_values\": []}', '2024-04-17 04:17:41', '2024-04-17 04:17:41'),
(985, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"3\", \"final_exam\": 55, \"student_id\": \"62400824\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 04:17:48', '2024-04-17 04:17:48'),
(986, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 3}, \"old_values\": []}', '2024-04-17 04:17:48', '2024-04-17 04:17:48'),
(987, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"4\", \"final_exam\": 55, \"student_id\": \"62400824\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 04:17:55', '2024-04-17 04:17:55'),
(988, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 4}, \"old_values\": []}', '2024-04-17 04:17:55', '2024-04-17 04:17:55'),
(989, 'default', 'created', 'App\\Models\\StudentMarking', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"ca_exam\": 24, \"course_id\": \"5\", \"final_exam\": 55, \"student_id\": \"62400824\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-17 04:18:02', '2024-04-17 04:18:02'),
(990, 'default', 'created', 'App\\Models\\StudentMarkingTotal', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/upload-student-marks\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"mark\": 79, \"grade\": \"B+\", \"student_marking_id\": 5}, \"old_values\": []}', '2024-04-17 04:18:03', '2024-04-17 04:18:03'),
(991, 'default', 'updated', 'App\\Models\\StudentMarking', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-16 21:17:35\", \"final_exam\": \"15\", \"student_id\": \"62400824\", \"updated_at\": \"2024-04-16 21:17:35\", \"academic_year_id\": 1, \"academic_session_id\": 1}, \"old_values\": {\"id\": 1, \"ca_exam\": \"24\", \"course_id\": 1, \"created_at\": \"2024-04-16T19:17:35.000000Z\", \"final_exam\": \"55\", \"student_id\": 62400824, \"updated_at\": \"2024-04-16T19:17:35.000000Z\", \"academic_year_id\": 1, \"academic_session_id\": 1}}', '2024-04-17 04:18:28', '2024-04-17 04:18:28'),
(992, 'default', 'updated', 'App\\Models\\StudentMarkingTotal', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-marking\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"mark\": 39, \"grade\": \"F\", \"created_at\": \"2024-04-16 21:17:35\", \"updated_at\": \"2024-04-16 21:17:35\", \"student_marking_id\": 1}, \"old_values\": {\"id\": 1, \"mark\": \"79\", \"grade\": \"B+\", \"created_at\": \"2024-04-16T19:17:35.000000Z\", \"updated_at\": \"2024-04-16T19:17:35.000000Z\", \"student_marking_id\": 1}}', '2024-04-17 04:18:28', '2024-04-17 04:18:28'),
(993, 'default', 'created', 'App\\Models\\StudentProgress', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"year\": \"2024\", \"year_id\": \"1\", \"program_id\": 1, \"session_id\": \"2\", \"student_id\": 1, \"std_reg_status_id\": 1}, \"old_values\": []}', '2024-04-17 04:22:04', '2024-04-17 04:22:04'),
(994, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 1, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": 3, \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 04:22:04', '2024-04-17 04:22:04'),
(995, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 9, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 04:22:04', '2024-04-17 04:22:04'),
(996, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": 6, \"student_id\": 1, \"intake_year\": \"2024\", \"academic_year_id\": 1, \"course_status_id\": 1, \"academic_session_id\": 2}, \"old_values\": []}', '2024-04-17 04:22:04', '2024-04-17 04:22:04'),
(997, 'default', 'updated', 'App\\Models\\StudentProgress', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/end-comments-generation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 20:44:40\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 21:16:12\", \"std_reg_status_id\": 7}, \"old_values\": {\"id\": 1, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T18:44:40.000000Z\", \"program_id\": \"1\", \"session_id\": \"1\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16T19:16:12.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-17 04:22:04', '2024-04-17 04:22:04'),
(998, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"4\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 04:29:02', '2024-04-17 04:29:02'),
(999, 'default', 'created', 'App\\Models\\StudentCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-course\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"6\", \"student_id\": \"1\", \"intake_year\": \"2024\", \"academic_year_id\": \"1\", \"course_status_id\": \"2\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-17 04:29:13', '2024-04-17 04:29:13'),
(1000, 'default', 'created', 'App\\Models\\StudentQuotation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"status\": \"unused\", \"student_id\": 1, \"quotation_no\": 752140, \"quotation_year\": \"2024\", \"quotation_amount\": \"1600\", \"academic_session_id\": \"2\", \"quotation_description\": \"tuition\"}, \"old_values\": []}', '2024-04-17 04:29:30', '2024-04-17 04:29:30'),
(1001, 'default', 'updated', 'App\\Models\\Balance', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-quotation\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"amount\": \"90\", \"created_at\": \"2024-04-16 12:13:48\", \"student_id\": 1, \"updated_at\": \"2024-04-16 12:13:48\"}, \"old_values\": {\"id\": 1, \"amount\": 0, \"created_at\": \"2024-04-16T10:13:48.000000Z\", \"student_id\": 1, \"updated_at\": \"2024-04-16T10:13:48.000000Z\"}}', '2024-04-17 04:29:30', '2024-04-17 04:29:30'),
(1002, 'default', 'created', 'App\\Models\\StudentReceipt', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"receipt_no\": \"RPT9141920576\", \"student_id\": 1, \"receipt_year\": \"2024\", \"receipt_amount\": \"1600\", \"academic_session_id\": \"2\", \"receipt_description\": \"Full payment\"}, \"old_values\": []}', '2024-04-17 04:36:32', '2024-04-17 04:36:32'),
(1003, 'default', 'created', 'App\\Models\\StudentInvoice', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_no\": \"INV5618891033\", \"student_id\": 1, \"invoice_year\": \"2024\", \"invoice_amount\": 1600, \"invoice_type_id\": 1, \"academic_session_id\": 2, \"invoice_description\": \"\"}, \"old_values\": []}', '2024-04-17 04:36:32', '2024-04-17 04:36:32');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(1004, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": 0, \"entry_type\": \"invoice\", \"invoice_id\": 2, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"1713296192a7cwor\", \"running_balance\": 1600}, \"old_values\": []}', '2024-04-17 04:36:32', '2024-04-17 04:36:32'),
(1005, 'default', 'created', 'App\\Models\\StudentFinancialStatement', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"debit\": 1600, \"credit\": \"1600\", \"entry_type\": \"receipt\", \"receipt_id\": 3, \"student_id\": 1, \"description\": \"Full payment\", \"reference_no\": \"17132961928rT931\", \"running_balance\": 0}, \"old_values\": []}', '2024-04-17 04:36:32', '2024-04-17 04:36:32'),
(1006, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-student-receipt\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 21:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16 21:22:04\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T19:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"updated_at\": \"2024-04-16T19:22:04.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 04:36:33', '2024-04-17 04:36:33'),
(1007, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=ZXVGE0ClJqo5I4WHZcF7hTXo0Xi3co6arESahj4w&reg_status_id=5&student_no=62400824\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 21:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-16 21:36:33\", \"std_reg_status_id\": \"5\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T19:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-16T19:36:33.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-17 04:45:08', '2024-04-17 04:45:08'),
(1008, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=ZXVGE0ClJqo5I4WHZcF7hTXo0Xi3co6arESahj4w&reg_status_id=1&student_no=62400824\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16 21:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-16 21:45:08\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-16T19:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-16T19:45:08.000000Z\", \"std_reg_status_id\": \"5\"}}', '2024-04-17 04:49:26', '2024-04-17 04:49:26'),
(1009, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=TEOEhqvWvXTOnLczkr9zxQlADNRaZVB6C0CsYDfU&reg_status_id=2&student_no=62400824\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 06:49:26\", \"std_reg_status_id\": \"2\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T04:49:26.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 09:24:52', '2024-04-17 09:24:52'),
(1010, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=TEOEhqvWvXTOnLczkr9zxQlADNRaZVB6C0CsYDfU&reg_status_id=1&student_no=62400824\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 11:24:52\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T09:24:52.000000Z\", \"std_reg_status_id\": \"2\"}}', '2024-04-17 09:25:31', '2024-04-17 09:25:31'),
(1011, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=TEOEhqvWvXTOnLczkr9zxQlADNRaZVB6C0CsYDfU&reg_status_id=6&student_no=62400824\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 11:25:31\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T09:25:31.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 09:43:36', '2024-04-17 09:43:36'),
(1012, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=TEOEhqvWvXTOnLczkr9zxQlADNRaZVB6C0CsYDfU&reg_status_id=1&student_no=62400824\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 11:43:36\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T09:43:36.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 09:44:14', '2024-04-17 09:44:14'),
(1013, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=TEOEhqvWvXTOnLczkr9zxQlADNRaZVB6C0CsYDfU&reg_status_id=4&student_no=62400824\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 11:44:14\", \"std_reg_status_id\": \"4\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T09:44:14.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 09:46:24', '2024-04-17 09:46:24'),
(1014, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status?_token=TEOEhqvWvXTOnLczkr9zxQlADNRaZVB6C0CsYDfU&reg_status_id=8&student_no=62400824\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 11:46:24\", \"std_reg_status_id\": \"8\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T09:46:24.000000Z\", \"std_reg_status_id\": \"4\"}}', '2024-04-17 10:31:36', '2024-04-17 10:31:36'),
(1015, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 12:31:36\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T10:31:36.000000Z\", \"std_reg_status_id\": \"8\"}}', '2024-04-17 12:50:14', '2024-04-17 12:50:14'),
(1016, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 14:50:14\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T12:50:14.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 12:57:40', '2024-04-17 12:57:40'),
(1017, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 14:57:40\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T12:57:40.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 12:57:57', '2024-04-17 12:57:57'),
(1018, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 14:57:57\", \"std_reg_status_id\": null}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T12:57:57.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 13:57:23', '2024-04-17 13:57:23'),
(1019, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 15:57:23\", \"std_reg_status_id\": null}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T13:57:23.000000Z\", \"std_reg_status_id\": \"\"}}', '2024-04-17 13:57:56', '2024-04-17 13:57:56'),
(1020, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 15:57:56\", \"std_reg_status_id\": null}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T13:57:56.000000Z\", \"std_reg_status_id\": \"\"}}', '2024-04-17 13:58:39', '2024-04-17 13:58:39'),
(1021, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 15:58:39\", \"std_reg_status_id\": null}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T13:58:39.000000Z\", \"std_reg_status_id\": \"\"}}', '2024-04-17 13:58:54', '2024-04-17 13:58:54'),
(1022, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 15:58:54\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T13:58:54.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:02:09', '2024-04-17 14:02:09'),
(1023, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:02:09\", \"std_reg_status_id\": null}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:02:09.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:02:21', '2024-04-17 14:02:21'),
(1024, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:02:21\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:02:21.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:03:17', '2024-04-17 14:03:17'),
(1025, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:03:17\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:03:17.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:06:28', '2024-04-17 14:06:28'),
(1026, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:06:28\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:06:28.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:06:35', '2024-04-17 14:06:35'),
(1027, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:06:35\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:06:35.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:10:20', '2024-04-17 14:10:20'),
(1028, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:10:21\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:10:21.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:10:24', '2024-04-17 14:10:24'),
(1029, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:10:24\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:10:24.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:13:14', '2024-04-17 14:13:14'),
(1030, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:13:14\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:13:14.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:16:09', '2024-04-17 14:16:09'),
(1031, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:16:09\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:16:09.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:16:24', '2024-04-17 14:16:24'),
(1032, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:16:24\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:16:24.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:16:27', '2024-04-17 14:16:27'),
(1033, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:16:27\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:16:27.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:16:47', '2024-04-17 14:16:47'),
(1034, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:16:47\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:16:47.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:18:20', '2024-04-17 14:18:20'),
(1035, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:18:20\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:18:20.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:20:15', '2024-04-17 14:20:15'),
(1036, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:20:15\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:20:15.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:20:19', '2024-04-17 14:20:19'),
(1037, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:20:19\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:20:19.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:21:24', '2024-04-17 14:21:24'),
(1038, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:21:24\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:21:24.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:21:28', '2024-04-17 14:21:28'),
(1039, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:21:28\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:21:28.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:21:49', '2024-04-17 14:21:49'),
(1040, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:21:49\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:21:49.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:21:55', '2024-04-17 14:21:55'),
(1041, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:21:55\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:21:55.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:22:21', '2024-04-17 14:22:21'),
(1042, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:22:21\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:22:21.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:22:23', '2024-04-17 14:22:23'),
(1043, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:22:23\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:22:23.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:23:03', '2024-04-17 14:23:03'),
(1044, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:23:03\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:23:03.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:23:07', '2024-04-17 14:23:07'),
(1045, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:23:07\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:23:07.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-17 14:29:08', '2024-04-17 14:29:08'),
(1046, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:29:08\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:29:08.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-17 14:31:43', '2024-04-17 14:31:43'),
(1047, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/edit-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2022-08-16 12:11:51\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20220816fintech_fest.png\", \"transcript_path\": null, \"Institution_name\": null, \"institution_name\": \"UNZA\", \"Institution_address\": null, \"institution_address\": \"Lusaka\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null, \"instituition_logo_path\": \"instituition_logo_path20220816unza_logo.png\"}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2022-08-16T10:11:51.000000Z\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20220816fintech_fest.png\", \"transcript_path\": null, \"institution_name\": \"UNZA\", \"institution_address\": \"Lusaka\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null, \"instituition_logo_path\": \"instituition_logo_path20220816unza_logo.png\"}}', '2024-04-18 09:11:49', '2024-04-18 09:11:49'),
(1048, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/edit-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 11:11:49\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20220816fintech_fest.png\", \"transcript_path\": null, \"Institution_name\": \"Oakland University\", \"institution_name\": null, \"Institution_address\": null, \"institution_address\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null, \"instituition_logo_path\": \"instituition_logo_path20220816unza_logo.png\"}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T09:11:49.000000Z\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20220816fintech_fest.png\", \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null, \"instituition_logo_path\": \"instituition_logo_path20220816unza_logo.png\"}}', '2024-04-18 09:14:02', '2024-04-18 09:14:02'),
(1049, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/edit-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 11:14:02\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20220816fintech_fest.png\", \"transcript_path\": null, \"Institution_name\": null, \"institution_name\": \"Oakland University\", \"Institution_address\": null, \"institution_address\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null, \"instituition_logo_path\": \"instituition_logo_path20220816unza_logo.png\"}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T09:14:02.000000Z\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20220816fintech_fest.png\", \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null, \"instituition_logo_path\": \"instituition_logo_path20220816unza_logo.png\"}}', '2024-04-18 09:20:10', '2024-04-18 09:20:10'),
(1050, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/edit-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 11:20:10\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20220816fintech_fest.png\", \"transcript_path\": null, \"Institution_name\": null, \"institution_name\": null, \"Institution_address\": null, \"institution_address\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null, \"instituition_logo_path\": \"instituition_logo_path20220816unza_logo.png\"}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T09:20:10.000000Z\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20220816fintech_fest.png\", \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null, \"instituition_logo_path\": \"instituition_logo_path20220816unza_logo.png\"}}', '2024-04-18 09:20:18', '2024-04-18 09:20:18'),
(1051, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"Instituition_name\": null, \"Instituition_address\": null}, \"old_values\": []}', '2024-04-18 10:08:03', '2024-04-18 10:08:03'),
(1052, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"Instituition_name\": null, \"Instituition_address\": null}, \"old_values\": []}', '2024-04-18 10:20:38', '2024-04-18 10:20:38'),
(1053, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"Instituition_name\": null, \"Instituition_address\": null}, \"old_values\": []}', '2024-04-18 10:20:45', '2024-04-18 10:20:45'),
(1054, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"instituition_name\": null, \"instituition_address\": null}, \"old_values\": []}', '2024-04-18 10:25:33', '2024-04-18 10:25:33'),
(1055, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17 16:31:43\", \"std_reg_status_id\": \"6\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-17T14:31:43.000000Z\", \"std_reg_status_id\": \"1\"}}', '2024-04-18 10:30:16', '2024-04-18 10:30:16'),
(1056, 'default', 'updated', 'App\\Models\\StudentProgress', 2, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/update-student-status\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 2, \"ip_address\": \"::1\", \"new_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17 06:22:04\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-18 12:30:16\", \"std_reg_status_id\": \"1\"}, \"old_values\": {\"id\": 2, \"year\": \"2024\", \"year_id\": \"1\", \"created_at\": \"2024-04-17T04:22:04.000000Z\", \"program_id\": \"1\", \"session_id\": \"2\", \"student_id\": \"1\", \"student_no\": \"62400824\", \"updated_at\": \"2024-04-18T10:30:16.000000Z\", \"std_reg_status_id\": \"6\"}}', '2024-04-18 10:30:24', '2024-04-18 10:30:24'),
(1057, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"instituition_name\": null, \"instituition_address\": null}, \"old_values\": []}', '2024-04-18 10:30:37', '2024-04-18 10:30:37'),
(1058, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"institution_name\": null, \"institution_address\": null}, \"old_values\": []}', '2024-04-18 10:32:30', '2024-04-18 10:32:30'),
(1059, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"trascript_path\": \"trascript_path20240418Screenshot 2024-04-17 115317.png\", \"institution_name\": null, \"institution_address\": null}, \"old_values\": []}', '2024-04-18 10:33:15', '2024-04-18 10:33:15'),
(1060, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"institution_name\": null, \"institution_address\": null}, \"old_values\": []}', '2024-04-18 10:34:13', '2024-04-18 10:34:13'),
(1061, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 11:20:18\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T09:20:18.000000Z\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20220816fintech_fest.png\", \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"instituition_logo_path20220816unza_logo.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 10:55:46', '2024-04-18 10:55:46'),
(1062, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 12:55:46\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": \"$request->transcript_path\", \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T10:55:46.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 10:57:53', '2024-04-18 10:57:53');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(1063, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 12:57:53\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T10:57:53.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": \"$request->transcript_path\", \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:00:50', '2024-04-18 12:00:50'),
(1064, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/edit-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:00:50\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20240418Screenshot (1).png\", \"transcript_path\": null, \"institution_name\": null, \"Institution_address\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:00:50.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:29:05', '2024-04-18 12:29:05'),
(1065, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/edit-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:29:05\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20240418Screenshot (1).png\", \"transcript_path\": null, \"institution_name\": null, \"Institution_address\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:29:05.000000Z\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20240418Screenshot (1).png\", \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:30:51', '2024-04-18 12:30:51'),
(1066, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:30:51\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 115317.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:30:51.000000Z\", \"invoice_path\": null, \"receipt_path\": \"receipt_path20240418Screenshot (1).png\", \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:34:34', '2024-04-18 12:34:34'),
(1067, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:34:34\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418Screenshot (1).png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:34:34.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 115317.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:34:54', '2024-04-18 12:34:54'),
(1068, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:34:54\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418Screenshot (2).png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:34:54.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418Screenshot (1).png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:36:55', '2024-04-18 12:36:55'),
(1069, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:36:55\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 115317.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:36:55.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418Screenshot (2).png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:37:12', '2024-04-18 12:37:12'),
(1070, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/edit-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:37:12\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"Institution_address\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418GHOST-AI-01.jpg\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:37:12.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 115317.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:38:09', '2024-04-18 12:38:09'),
(1071, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:38:09\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418Screenshot.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:38:09.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418GHOST-AI-01.jpg\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:39:21', '2024-04-18 12:39:21'),
(1072, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:39:21\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418screen.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:39:21.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"instituition_logo_path20220906unza_logo.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:41:49', '2024-04-18 12:41:49'),
(1073, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:41:49\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418instituition_logo_path20220816fintech_fest1.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:41:49.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418screen.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:43:48', '2024-04-18 12:43:48'),
(1074, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:43:48\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418instituition_logo_path20220816unza_logo.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:43:48.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"institution_logo_path20240418instituition_logo_path20220816fintech_fest1.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:44:24', '2024-04-18 12:44:24'),
(1075, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_path\": \"invoice_path20240418screen.png\", \"receipt_path\": \"receipt_path20240418Screenshot (4).png\", \"transcript_path\": \"transcript_path20240418Screenshot 2024-04-17 115317.png\", \"institution_name\": \"Oakland\", \"institution_address\": \"Plot 7 Boulevard st.\", \"institution_logo_path\": \"institution_logo_path20240418instituition_logo_path20220906unza_logo.png\", \"studen_statement_path\": \"studen_statement_path20240418Screenshot 2024-04-17 165951.png\", \"acceptance_letter_path\": \"acceptance_letter_path20240418Screenshot (5).png\"}, \"old_values\": []}', '2024-04-18 12:46:54', '2024-04-18 12:46:54'),
(1076, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:44:24\", \"invoice_path\": \"invoice_path20240418Screenshot (3).png\", \"receipt_path\": \"receipt_path20240418Screenshot 2024-04-17 115317.png\", \"transcript_path\": \"transcript_path20240418Screenshot 2024-04-17 115317.png\", \"institution_name\": null, \"institution_address\": \"Plot 7 Boulevard st.\", \"institution_logo_path\": \"institution_logo_path20240418Screenshot.png\", \"studen_statement_path\": \"studen_statement_path20240418Screenshot (4).png\", \"acceptance_letter_path\": \"acceptance_letter_path20240418screen.png\", \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:44:24.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": null, \"institution_logo_path\": \"instituition_logo_path20220906unza_logo.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:48:47', '2024-04-18 12:48:47'),
(1077, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:48:47\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": null, \"institution_address\": \"Oakland\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:48:47.000000Z\", \"invoice_path\": \"invoice_path20240418Screenshot (3).png\", \"receipt_path\": \"receipt_path20240418Screenshot 2024-04-17 115317.png\", \"transcript_path\": \"transcript_path20240418Screenshot 2024-04-17 115317.png\", \"institution_name\": null, \"institution_address\": \"Plot 7 Boulevard st.\", \"institution_logo_path\": \"institution_logo_path20240418Screenshot.png\", \"studen_statement_path\": \"studen_statement_path20240418Screenshot (4).png\", \"acceptance_letter_path\": \"acceptance_letter_path20240418screen.png\", \"confirmation_slip_path\": null}}', '2024-04-18 12:50:28', '2024-04-18 12:50:28'),
(1078, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_address\": \"Oakland\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null}, \"old_values\": []}', '2024-04-18 12:53:05', '2024-04-18 12:53:05'),
(1079, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland\", \"institution_address\": \"Plot 7 Boulevard st.\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null}, \"old_values\": []}', '2024-04-18 12:54:01', '2024-04-18 12:54:01'),
(1080, 'default', 'created', 'App\\Models\\Institution', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard st.\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null}, \"old_values\": []}', '2024-04-18 12:55:58', '2024-04-18 12:55:58'),
(1081, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:50:28\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard st.\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:50:28.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland\", \"institution_address\": \"Plot 7 Boulevard st.\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:58:15', '2024-04-18 12:58:15'),
(1082, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:58:15\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:58:15.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard st.\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 12:58:21', '2024-04-18 12:58:21'),
(1083, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 14:58:21\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": \"transcript_path20240418Screenshot 2024-04-17 115317.png\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T12:58:21.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 13:09:10', '2024-04-18 13:09:10'),
(1084, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 15:09:10\", \"invoice_path\": \"invoice_path20240418Screenshot 2024-04-17 115418.png\", \"receipt_path\": \"receipt_path20240418Screenshot 2024-04-17 115418.png\", \"transcript_path\": \"transcript_path20240418Screenshot 2024-04-17 115418.png\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 115418.png\", \"studen_statement_path\": \"studen_statement_path20240418Screenshot 2024-04-17 115418.png\", \"acceptance_letter_path\": \"acceptance_letter_path20240418Screenshot 2024-04-17 115418.png\", \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T13:09:10.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": \"transcript_path20240418Screenshot 2024-04-17 115317.png\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": null, \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 13:31:00', '2024-04-18 13:31:00'),
(1085, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 15:31:00\", \"invoice_path\": \"invoice_path20240418Screenshot 2024-04-17 115418.png\", \"receipt_path\": \"receipt_path20240418Screenshot 2024-04-17 115418.png\", \"transcript_path\": \"ef352b14-18fd-49d4-8328-8404d029cd92\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 115418.png\", \"studen_statement_path\": \"studen_statement_path20240418Screenshot 2024-04-17 115418.png\", \"acceptance_letter_path\": \"acceptance_letter_path20240418Screenshot 2024-04-17 115418.png\", \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T13:31:00.000000Z\", \"invoice_path\": \"invoice_path20240418Screenshot 2024-04-17 115418.png\", \"receipt_path\": \"receipt_path20240418Screenshot 2024-04-17 115418.png\", \"transcript_path\": \"transcript_path20240418Screenshot 2024-04-17 115418.png\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 115418.png\", \"studen_statement_path\": \"studen_statement_path20240418Screenshot 2024-04-17 115418.png\", \"acceptance_letter_path\": \"acceptance_letter_path20240418Screenshot 2024-04-17 115418.png\", \"confirmation_slip_path\": null}}', '2024-04-18 13:36:54', '2024-04-18 13:36:54'),
(1086, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 15:36:54\", \"invoice_path\": \"VB57DHDGq5\", \"receipt_path\": \"DStY9HriwT\", \"transcript_path\": \"udZM1qcRDQ\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"xUoVG9D2wx\", \"studen_statement_path\": \"kNm57aVx5O\", \"acceptance_letter_path\": \"AO3b5QQEHD\", \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T13:36:54.000000Z\", \"invoice_path\": \"invoice_path20240418Screenshot 2024-04-17 115418.png\", \"receipt_path\": \"receipt_path20240418Screenshot 2024-04-17 115418.png\", \"transcript_path\": \"ef352b14-18fd-49d4-8328-8404d029cd92\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 115418.png\", \"studen_statement_path\": \"studen_statement_path20240418Screenshot 2024-04-17 115418.png\", \"acceptance_letter_path\": \"acceptance_letter_path20240418Screenshot 2024-04-17 115418.png\", \"confirmation_slip_path\": null}}', '2024-04-18 13:39:30', '2024-04-18 13:39:30'),
(1087, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 15:39:30\", \"invoice_path\": \"crhpHoHRLCpng\", \"receipt_path\": \"rWTLjxiQmHpng\", \"transcript_path\": \"ZMaDwLOTrnpng\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"UYR3PrhLyKpng\", \"studen_statement_path\": \"3TddZ4kFxFpng\", \"acceptance_letter_path\": \"hapoUGp8svpng\", \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T13:39:30.000000Z\", \"invoice_path\": \"VB57DHDGq5\", \"receipt_path\": \"DStY9HriwT\", \"transcript_path\": \"udZM1qcRDQ\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"xUoVG9D2wx\", \"studen_statement_path\": \"kNm57aVx5O\", \"acceptance_letter_path\": \"AO3b5QQEHD\", \"confirmation_slip_path\": null}}', '2024-04-18 13:53:34', '2024-04-18 13:53:34'),
(1088, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 15:53:34\", \"invoice_path\": \"58UDPKBTy5.png\", \"receipt_path\": \"uk2dnlSmWC.png\", \"transcript_path\": \"AiLuy18i96.png\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"mHsapzOLLw.png\", \"studen_statement_path\": \"kCk92xXQMs.png\", \"acceptance_letter_path\": \"NWlv3YTDUM.png\", \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T13:53:34.000000Z\", \"invoice_path\": \"crhpHoHRLCpng\", \"receipt_path\": \"rWTLjxiQmHpng\", \"transcript_path\": \"ZMaDwLOTrnpng\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"UYR3PrhLyKpng\", \"studen_statement_path\": \"3TddZ4kFxFpng\", \"acceptance_letter_path\": \"hapoUGp8svpng\", \"confirmation_slip_path\": null}}', '2024-04-18 13:54:21', '2024-04-18 13:54:21'),
(1089, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 15:54:21\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"yFaPsy1wHg.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T13:54:21.000000Z\", \"invoice_path\": \"58UDPKBTy5.png\", \"receipt_path\": \"uk2dnlSmWC.png\", \"transcript_path\": \"AiLuy18i96.png\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"mHsapzOLLw.png\", \"studen_statement_path\": \"kCk92xXQMs.png\", \"acceptance_letter_path\": \"NWlv3YTDUM.png\", \"confirmation_slip_path\": null}}', '2024-04-18 13:57:22', '2024-04-18 13:57:22'),
(1090, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 15:57:22\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 165951.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T13:57:22.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"yFaPsy1wHg.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 13:59:13', '2024-04-18 13:59:13'),
(1091, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 15:59:13\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"2YtZxKOTki.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T13:59:13.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"institution_logo_path20240418Screenshot 2024-04-17 165951.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 14:05:54', '2024-04-18 14:05:54'),
(1092, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 16:05:54\", \"invoice_path\": \"Cyd9f0bHOQ.png\", \"receipt_path\": \"mQ2DX7NtHf.png\", \"transcript_path\": \"ITCV3MC6dc.png\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"9lwAFXKE9V.png\", \"studen_statement_path\": \"31k07ORJu3.png\", \"acceptance_letter_path\": \"ZXVh7TFyqA.png\", \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T14:05:54.000000Z\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"2YtZxKOTki.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}}', '2024-04-18 14:22:55', '2024-04-18 14:22:55'),
(1093, 'default', 'updated', 'App\\Models\\Institution', 1, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-institution\", \"action\": \"updated\", \"browser\": \"Firefox\", \"item_id\": 1, \"ip_address\": \"::1\", \"new_values\": {\"id\": 1, \"created_at\": \"2022-08-16 12:11:51\", \"updated_at\": \"2024-04-18 16:22:55\", \"invoice_path\": null, \"receipt_path\": null, \"transcript_path\": null, \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"cCHVGciiPN.png\", \"studen_statement_path\": null, \"acceptance_letter_path\": null, \"confirmation_slip_path\": null}, \"old_values\": {\"id\": 1, \"created_at\": \"2022-08-16T10:11:51.000000Z\", \"updated_at\": \"2024-04-18T14:22:55.000000Z\", \"invoice_path\": \"Cyd9f0bHOQ.png\", \"receipt_path\": \"mQ2DX7NtHf.png\", \"transcript_path\": \"ITCV3MC6dc.png\", \"institution_name\": \"Oakland University\", \"institution_address\": \"Plot 7 Boulevard street\", \"institution_logo_path\": \"9lwAFXKE9V.png\", \"studen_statement_path\": \"31k07ORJu3.png\", \"acceptance_letter_path\": \"ZXVh7TFyqA.png\", \"confirmation_slip_path\": null}}', '2024-04-18 14:41:44', '2024-04-18 14:41:44'),
(1094, 'default', 'created', 'App\\Models\\Program', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"faculty_id\": \"1\", \"program_name\": \"Pure Mathematics\"}, \"old_values\": []}', '2024-04-18 17:54:07', '2024-04-18 17:54:07'),
(1095, 'default', 'created', 'App\\Models\\CashBooks', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/cash-books\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": \"MTN Mobile Money\"}, \"old_values\": []}', '2024-04-18 17:54:21', '2024-04-18 17:54:21'),
(1096, 'default', 'created', 'App\\Models\\CashBooks', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/cash-books\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": \"Airtel Mobile Money\"}, \"old_values\": []}', '2024-04-18 17:54:28', '2024-04-18 17:54:28'),
(1097, 'default', 'created', 'App\\Models\\CashBooks', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/cash-books\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": \"Zanaco Bank\"}, \"old_values\": []}', '2024-04-18 17:54:35', '2024-04-18 17:54:35'),
(1098, 'default', 'created', 'App\\Models\\Program', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"faculty_id\": \"1\", \"program_name\": null}, \"old_values\": []}', '2024-04-18 18:00:58', '2024-04-18 18:00:58'),
(1099, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": null}, \"old_values\": []}', '2024-04-18 18:03:39', '2024-04-18 18:03:39'),
(1100, 'default', 'created', 'App\\Models\\CashBooks', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/cash-books\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": null}, \"old_values\": []}', '2024-04-18 18:07:39', '2024-04-18 18:07:39'),
(1101, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 1\"}, \"old_values\": []}', '2024-04-18 18:11:50', '2024-04-18 18:11:50'),
(1102, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 2\"}, \"old_values\": []}', '2024-04-18 18:11:57', '2024-04-18 18:11:57'),
(1103, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 3\"}, \"old_values\": []}', '2024-04-18 18:12:00', '2024-04-18 18:12:00'),
(1104, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 4\"}, \"old_values\": []}', '2024-04-18 18:12:02', '2024-04-18 18:12:02'),
(1105, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 5\"}, \"old_values\": []}', '2024-04-18 18:12:06', '2024-04-18 18:12:06'),
(1106, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 6\"}, \"old_values\": []}', '2024-04-18 18:12:09', '2024-04-18 18:12:09'),
(1107, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": null}, \"old_values\": []}', '2024-04-18 18:12:22', '2024-04-18 18:12:22'),
(1108, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Term 1\"}, \"old_values\": []}', '2024-04-18 18:13:58', '2024-04-18 18:13:58'),
(1109, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Term 2\"}, \"old_values\": []}', '2024-04-18 18:14:35', '2024-04-18 18:14:35'),
(1110, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Term 3\"}, \"old_values\": []}', '2024-04-18 18:15:14', '2024-04-18 18:15:14'),
(1111, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Semester 1\"}, \"old_values\": []}', '2024-04-18 18:15:17', '2024-04-18 18:15:17'),
(1112, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Semester 2\"}, \"old_values\": []}', '2024-04-18 18:15:21', '2024-04-18 18:15:21'),
(1113, 'default', 'created', 'App\\Models\\Program', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"faculty_id\": \"1\", \"program_name\": \"Biology\"}, \"old_values\": []}', '2024-04-18 18:16:01', '2024-04-18 18:16:01'),
(1114, 'default', 'created', 'App\\Models\\Program', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"faculty_id\": \"1\", \"program_name\": \"Chemistry\"}, \"old_values\": []}', '2024-04-18 18:16:35', '2024-04-18 18:16:35'),
(1115, 'default', 'created', 'App\\Models\\CashBooks', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/cash-books\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": \"Zanaco Bank\"}, \"old_values\": []}', '2024-04-18 18:18:54', '2024-04-18 18:18:54'),
(1116, 'default', 'created', 'App\\Models\\CashBooks', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/cash-books\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": \"Airtel Mobile Money\"}, \"old_values\": []}', '2024-04-18 18:18:58', '2024-04-18 18:18:58'),
(1117, 'default', 'created', 'App\\Models\\CashBooks', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/cash-books\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": \"MTN Mobile Money\"}, \"old_values\": []}', '2024-04-18 18:19:01', '2024-04-18 18:19:01'),
(1118, 'default', 'created', 'App\\Models\\CashBooks', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/cash-books\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": \"FNB\"}, \"old_values\": []}', '2024-04-18 18:19:06', '2024-04-18 18:19:06'),
(1119, 'default', 'created', 'App\\Models\\MarkingScheme', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-marking-scheme?ca_mark=40&exam_mark=60&marking_scheme_name=BI110%20Marking%20Scheme\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"scheme\": \"BI110 Marking Scheme\", \"ca_exam\": \"40\", \"final_exam\": \"60\"}, \"old_values\": []}', '2024-04-18 19:05:58', '2024-04-18 19:05:58'),
(1120, 'default', 'created', 'App\\Models\\Course', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-courses\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_code\": \"BI112\", \"course_name\": \"Intro to Biology\", \"course_type_id\": \"2\", \"marking_scheme_id\": \"1\"}, \"old_values\": []}', '2024-04-18 19:06:20', '2024-04-18 19:06:20'),
(1121, 'default', 'created', 'App\\Models\\AcademicPath', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": \"Biology Academic Path\"}, \"old_values\": []}', '2024-04-18 19:22:21', '2024-04-18 19:22:21'),
(1122, 'default', 'created', 'App\\Models\\AcademicPath', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": null}, \"old_values\": []}', '2024-04-18 19:22:24', '2024-04-18 19:22:24'),
(1123, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=1&academic_year_id=1&add=true&level=1\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"1\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-18 19:44:58', '2024-04-18 19:44:58'),
(1124, 'default', 'created', 'App\\Models\\ProgramStructureDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program-structure-details/1?academic_path_detail_id=1&add=true&course_id=1&program_structure_id=1\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\", \"program_structure_id\": \"1\"}, \"old_values\": []}', '2024-04-18 19:48:54', '2024-04-18 19:48:54'),
(1125, 'default', 'created', 'App\\Models\\ProgramStructureDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program-structure-details/1?academic_path_detail_id=1&add=true&course_id=1&program_structure_id=1\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\", \"program_structure_id\": \"1\"}, \"old_values\": []}', '2024-04-18 19:49:33', '2024-04-18 19:49:33'),
(1126, 'default', 'created', 'App\\Models\\Program', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"faculty_id\": \"1\", \"program_name\": \"Pure Mathematics\"}, \"old_values\": []}', '2024-04-19 10:18:37', '2024-04-19 10:18:37'),
(1127, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 1\"}, \"old_values\": []}', '2024-04-19 10:18:52', '2024-04-19 10:18:52'),
(1128, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 2\"}, \"old_values\": []}', '2024-04-19 10:18:57', '2024-04-19 10:18:57'),
(1129, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 3\"}, \"old_values\": []}', '2024-04-19 10:19:01', '2024-04-19 10:19:01'),
(1130, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 4\"}, \"old_values\": []}', '2024-04-19 10:19:04', '2024-04-19 10:19:04');
INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `causer_type`, `causer_id`, `properties`, `created_at`, `updated_at`) VALUES
(1131, 'default', 'created', 'App\\Models\\AcademicYear', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-year\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_year_name\": \"Year 5\"}, \"old_values\": []}', '2024-04-19 10:19:06', '2024-04-19 10:19:06'),
(1132, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Term 1\"}, \"old_values\": []}', '2024-04-19 10:19:10', '2024-04-19 10:19:10'),
(1133, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Term 2\"}, \"old_values\": []}', '2024-04-19 10:19:13', '2024-04-19 10:19:13'),
(1134, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Term 3\"}, \"old_values\": []}', '2024-04-19 10:19:15', '2024-04-19 10:19:15'),
(1135, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Semester 1\"}, \"old_values\": []}', '2024-04-19 10:19:18', '2024-04-19 10:19:18'),
(1136, 'default', 'created', 'App\\Models\\AcademicSession', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-academic-session\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"academic_session_name\": \"Semester 2\"}, \"old_values\": []}', '2024-04-19 10:19:20', '2024-04-19 10:19:20'),
(1137, 'default', 'created', 'App\\Models\\MarkingScheme', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-marking-scheme?ca_mark=40&exam_mark=60&marking_scheme_name=BI110%20Marking%20Scheme\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"scheme\": \"BI110 Marking Scheme\", \"ca_exam\": \"40\", \"final_exam\": \"60\"}, \"old_values\": []}', '2024-04-19 10:19:37', '2024-04-19 10:19:37'),
(1138, 'default', 'created', 'App\\Models\\Course', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-courses\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_code\": \"BI112\", \"course_name\": \"Intro to Biology\", \"course_type_id\": \"2\", \"marking_scheme_id\": \"1\"}, \"old_values\": []}', '2024-04-19 10:20:06', '2024-04-19 10:20:06'),
(1139, 'default', 'created', 'App\\Models\\CourseManager', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/course-managers-store\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"user_id\": \"1\", \"course_id\": \"1\"}, \"old_values\": []}', '2024-04-19 10:20:19', '2024-04-19 10:20:19'),
(1140, 'default', 'created', 'App\\Models\\AcademicPath', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"name\": \"Biology Academic Path\"}, \"old_values\": []}', '2024-04-19 10:20:28', '2024-04-19 10:20:28'),
(1141, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=1&academic_year_id=1&add=true&level=1\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"1\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-19 10:20:37', '2024-04-19 10:20:37'),
(1142, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=2&academic_year_id=1&add=true&level=2\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"2\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-19 10:20:43', '2024-04-19 10:20:43'),
(1143, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=3&academic_year_id=1&add=true&level=3\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"3\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"3\"}, \"old_values\": []}', '2024-04-19 10:20:48', '2024-04-19 10:20:48'),
(1144, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=1&academic_year_id=2&add=true&level=4\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"4\", \"academic_path_id\": \"1\", \"academic_year_id\": \"2\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-19 10:20:57', '2024-04-19 10:20:57'),
(1145, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=2&academic_year_id=2&add=true&level=5\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"5\", \"academic_path_id\": \"1\", \"academic_year_id\": \"2\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-19 10:21:06', '2024-04-19 10:21:06'),
(1146, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=3&academic_year_id=2&add=true&level=6\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"6\", \"academic_path_id\": \"1\", \"academic_year_id\": \"2\", \"academic_session_id\": \"3\"}, \"old_values\": []}', '2024-04-19 10:21:15', '2024-04-19 10:21:15'),
(1147, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=1&academic_year_id=3&add=true&level=7\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"7\", \"academic_path_id\": \"1\", \"academic_year_id\": \"3\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-19 10:21:21', '2024-04-19 10:21:21'),
(1148, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=2&academic_year_id=3&add=true&level=8\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"8\", \"academic_path_id\": \"1\", \"academic_year_id\": \"3\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-19 10:21:26', '2024-04-19 10:21:26'),
(1149, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=3&academic_year_id=3&add=true&level=9\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"9\", \"academic_path_id\": \"1\", \"academic_year_id\": \"3\", \"academic_session_id\": \"3\"}, \"old_values\": []}', '2024-04-19 10:21:32', '2024-04-19 10:21:32'),
(1150, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=1&academic_year_id=4&add=true&level=10\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"10\", \"academic_path_id\": \"1\", \"academic_year_id\": \"4\", \"academic_session_id\": \"1\"}, \"old_values\": []}', '2024-04-19 10:21:41', '2024-04-19 10:21:41'),
(1151, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=2&academic_year_id=4&add=true&level=11\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"11\", \"academic_path_id\": \"1\", \"academic_year_id\": \"4\", \"academic_session_id\": \"2\"}, \"old_values\": []}', '2024-04-19 10:21:48', '2024-04-19 10:21:48'),
(1152, 'default', 'created', 'App\\Models\\AcademicPathDetails', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/academic-path-details/1?academic_session_id=3&academic_year_id=4&add=true&level=12\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"level\": \"12\", \"academic_path_id\": \"1\", \"academic_year_id\": \"4\", \"academic_session_id\": \"3\"}, \"old_values\": []}', '2024-04-19 10:21:53', '2024-04-19 10:21:53'),
(1153, 'default', 'created', 'App\\Models\\Program', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"faculty_id\": \"1\", \"program_name\": \"Biology\"}, \"old_values\": []}', '2024-04-19 10:23:18', '2024-04-19 10:23:18'),
(1154, 'default', 'created', 'App\\Models\\ProgramStructureDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-program-structure-details/1?academic_path_detail_id=1&add=true&course_id=1&program_structure_id=1\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\", \"program_structure_id\": \"1\"}, \"old_values\": []}', '2024-04-19 10:23:51', '2024-04-19 10:23:51'),
(1155, 'default', 'created', 'App\\Models\\FeeSetup', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/store-fee-setup-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"Fees for Term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}, \"old_values\": []}', '2024-04-19 10:24:53', '2024-04-19 10:24:53'),
(1156, 'default', 'created', 'App\\Models\\FeeSetup', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/store-fee-setup-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"Fees for Term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}, \"old_values\": []}', '2024-04-19 10:27:05', '2024-04-19 10:27:05'),
(1157, 'default', 'created', 'App\\Models\\FeeSetup', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/store-fee-setup-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}, \"old_values\": []}', '2024-04-19 10:32:55', '2024-04-19 10:32:55'),
(1158, 'default', 'created', 'App\\Models\\FeeSetup', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/store-fee-setup-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}, \"old_values\": []}', '2024-04-19 10:33:21', '2024-04-19 10:33:21'),
(1159, 'default', 'created', 'App\\Models\\FeeSetup', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/store-fee-setup-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}, \"old_values\": []}', '2024-04-19 10:40:29', '2024-04-19 10:40:29'),
(1160, 'default', 'created', 'App\\Models\\FeeSetup', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/store-fee-setup-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 2\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"2\", \"minimum_amount_type\": \"percentage\"}, \"old_values\": []}', '2024-04-19 10:41:17', '2024-04-19 10:41:17'),
(1161, 'default', 'created', 'App\\Models\\FeeSetup', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/store-fee-setup-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 3\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"3\", \"minimum_amount_type\": \"percentage\"}, \"old_values\": []}', '2024-04-19 10:41:50', '2024-04-19 10:41:50'),
(1162, 'default', 'created', 'App\\Models\\FeeSetupCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-coursefees\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"fee_setup_id\": \"5\", \"course_amount\": \"1500\"}, \"old_values\": []}', '2024-04-19 10:53:48', '2024-04-19 10:53:48'),
(1163, 'default', 'created', 'App\\Models\\FeeSetupOther', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-fee-setup-other\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_amount\": \"400\", \"fee_type_id\": \"3\", \"fee_setup_id\": \"5\"}, \"old_values\": []}', '2024-04-19 13:09:07', '2024-04-19 13:09:07'),
(1164, 'default', 'created', 'App\\Models\\FeeSetupOther', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/create-fee-setup-other\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"fee_amount\": \"750\", \"fee_type_id\": \"8\", \"fee_setup_id\": \"5\"}, \"old_values\": []}', '2024-04-19 13:13:42', '2024-04-19 13:13:42'),
(1165, 'default', 'created', 'App\\Models\\FeeSetupCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-coursefees\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"fee_setup_id\": \"7\", \"course_amount\": \"1000\"}, \"old_values\": []}', '2024-04-19 13:14:11', '2024-04-19 13:14:11'),
(1166, 'default', 'created', 'App\\Models\\FeeSetupCourse', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-coursefees\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"course_id\": \"1\", \"fee_setup_id\": \"6\", \"course_amount\": \"1500\"}, \"old_values\": []}', '2024-04-19 13:39:54', '2024-04-19 13:39:54'),
(1167, 'default', 'created', 'App\\Models\\GradingSchemeImplementation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/use-grading-system\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1}, \"old_values\": []}', '2024-04-19 13:54:53', '2024-04-19 13:54:53'),
(1168, 'default', 'created', 'App\\Models\\GradingSchemeImplementation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/use-grading-system\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 2}, \"old_values\": []}', '2024-04-19 13:54:53', '2024-04-19 13:54:53'),
(1169, 'default', 'created', 'App\\Models\\DegreeSchemeImplementation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/degree-scheme-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 1}, \"old_values\": []}', '2024-04-19 14:09:09', '2024-04-19 14:09:09'),
(1170, 'default', 'created', 'App\\Models\\DegreeSchemeImplementation', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/degree-scheme-program\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"program_id\": 2}, \"old_values\": []}', '2024-04-19 14:09:09', '2024-04-19 14:09:09'),
(1171, 'default', 'created', 'App\\Models\\GradingScheme', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-grading-scheme?grading_scheme_name=BI110%20Grading%20System\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"scheme\": \"BI110 Grading System\"}, \"old_values\": []}', '2024-04-19 14:15:38', '2024-04-19 14:15:38'),
(1172, 'default', 'created', 'App\\Models\\GradingSchemeDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-grading-scheme-dets?course_comment=fail&grading_scheme_id=0&highest_mark=39&letter_grade=F&lowest_mark=0&points=0\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"grade\": \"F\", \"point\": \"0\", \"low_mark\": \"0\", \"high_mark\": \"39\", \"course_comment\": \"fail\", \"grading_scheme_id\": \"0\"}, \"old_values\": []}', '2024-04-19 14:16:31', '2024-04-19 14:16:31'),
(1173, 'default', 'created', 'App\\Models\\GradingSchemeDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-grading-scheme-dets?course_comment=pass&grading_scheme_id=1&highest_mark=0&letter_grade=&lowest_mark=0&points=\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"grade\": null, \"point\": null, \"low_mark\": \"0\", \"high_mark\": \"0\", \"grading_scheme_id\": \"1\"}, \"old_values\": []}', '2024-04-19 14:24:03', '2024-04-19 14:24:03'),
(1174, 'default', 'created', 'App\\Models\\GradingSchemeDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-grading-scheme-dets?course_comment=fail&grading_scheme_id=0&highest_mark=39&letter_grade=F&lowest_mark=0&points=0\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"grade\": \"F\", \"point\": \"0\", \"low_mark\": \"0\", \"high_mark\": \"39\", \"grading_scheme_id\": \"0\"}, \"old_values\": []}', '2024-04-19 14:25:19', '2024-04-19 14:25:19'),
(1175, 'default', 'created', 'App\\Models\\GradingSchemeDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-grading-scheme-dets?course_comment=fail&grading_scheme_id=0&highest_mark=39&letter_grade=F&lowest_mark=0&points=0\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"grade\": \"F\", \"point\": \"0\", \"low_mark\": \"0\", \"high_mark\": \"39\", \"grading_scheme_id\": \"0\"}, \"old_values\": []}', '2024-04-19 14:29:44', '2024-04-19 14:29:44'),
(1176, 'default', 'created', 'App\\Models\\GradingSchemeDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-grading-scheme-dets?course_comment=fail&grading_scheme_id=1&highest_mark=39&letter_grade=F&lowest_mark=0&points=0\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"grade\": \"F\", \"point\": \"0\", \"low_mark\": \"0\", \"high_mark\": \"39\", \"grading_scheme_id\": \"1\"}, \"old_values\": []}', '2024-04-19 14:49:07', '2024-04-19 14:49:07'),
(1177, 'default', 'created', 'App\\Models\\GradingSchemeDetail', NULL, 'App\\Models\\User', 1, '{\"url\": \"http://newsrms/add-grading-scheme-dets?course_comment=pass&grading_scheme_id=1&highest_mark=54&letter_grade=0&lowest_mark=40&points=C\", \"action\": \"created\", \"browser\": \"Firefox\", \"item_id\": null, \"ip_address\": \"::1\", \"new_values\": {\"grade\": \"0\", \"point\": \"C\", \"low_mark\": \"40\", \"high_mark\": \"54\", \"grading_scheme_id\": \"1\"}, \"old_values\": []}', '2024-04-19 14:50:50', '2024-04-19 14:50:50');

-- --------------------------------------------------------

--
-- Table structure for table `applicant`
--

DROP TABLE IF EXISTS `applicant`;
CREATE TABLE IF NOT EXISTS `applicant` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `user_id` bigint UNSIGNED NOT NULL,
  `applicant_no` varchar(255) DEFAULT NULL,
  `next_of_kin` varchar(255) DEFAULT NULL,
  `next_of_kin_phone` varchar(255) DEFAULT NULL,
  `program_id` int DEFAULT NULL,
  `entry_year` varchar(255) DEFAULT NULL,
  `highschool_name` varchar(255) DEFAULT NULL,
  `instituition_name` varchar(255) DEFAULT NULL,
  `highest_qualification` varchar(255) DEFAULT NULL,
  `tetiary_compl_date` varchar(255) DEFAULT NULL,
  `highschool_compl_date` varchar(255) DEFAULT NULL,
  `exam_board_id` int DEFAULT NULL,
  `application_mode_id` int DEFAULT NULL,
  `applicant_type_id` int DEFAULT NULL,
  `applicant_status` varchar(255) DEFAULT NULL,
  `transcript_file_path` varchar(500) DEFAULT NULL,
  `certificate_file_path` varchar(500) DEFAULT NULL,
  `other_doc1_path` varchar(255) DEFAULT NULL,
  `other_doc2_path` varchar(255) DEFAULT NULL,
  `other_doc3_path` varchar(255) DEFAULT NULL,
  `other_doc4_path` varchar(255) DEFAULT NULL,
  `application_receipt_file_path` varchar(500) DEFAULT NULL,
  `created_at` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6),
  `updated_at` timestamp(6) NOT NULL DEFAULT '0000-00-00 00:00:00.000000',
  PRIMARY KEY (`id`),
  KEY `applicant_FK` (`user_id`),
  KEY `applicant_FK_1` (`program_id`),
  KEY `applicant_FK_2` (`exam_board_id`),
  KEY `applicant_FK_3` (`application_mode_id`),
  KEY `applicant_FK_4` (`applicant_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `applicant_files`
--

DROP TABLE IF EXISTS `applicant_files`;
CREATE TABLE IF NOT EXISTS `applicant_files` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `applicant_id` bigint UNSIGNED NOT NULL,
  `file_name` varchar(255) DEFAULT NULL,
  `file_path` varchar(255) NOT NULL,
  `file_type_id` bigint NOT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `applicant_id` (`applicant_id`),
  KEY `file_type_id` (`file_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `applicant_subject`
--

DROP TABLE IF EXISTS `applicant_subject`;
CREATE TABLE IF NOT EXISTS `applicant_subject` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `applicant_id` bigint UNSIGNED NOT NULL,
  `subject_id` int NOT NULL,
  `exam_board_id` int NOT NULL,
  `subject_grade` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `applicant_subject_FK` (`applicant_id`),
  KEY `applicant_subject_FK_1` (`subject_id`),
  KEY `applicant_subject_FK_2` (`exam_board_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `applicant_type`
--

DROP TABLE IF EXISTS `applicant_type`;
CREATE TABLE IF NOT EXISTS `applicant_type` (
  `id` int NOT NULL AUTO_INCREMENT,
  `applicant_type_name` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `applicant_type`
--

INSERT INTO `applicant_type` (`id`, `applicant_type_name`, `created_at`, `updated_at`) VALUES
(1, 'Undergraduate', '2022-09-05 13:58:37', '2022-09-05 13:58:37'),
(2, 'Postgraduate', '2022-09-05 13:58:37', '2022-09-05 13:58:37');

-- --------------------------------------------------------

--
-- Table structure for table `application_mode`
--

DROP TABLE IF EXISTS `application_mode`;
CREATE TABLE IF NOT EXISTS `application_mode` (
  `id` int NOT NULL AUTO_INCREMENT,
  `application_mode_name` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `application_mode`
--

INSERT INTO `application_mode` (`id`, `application_mode_name`, `created_at`, `updated_at`) VALUES
(1, 'Online', '2022-09-05 13:58:07', '2022-09-05 13:58:07'),
(2, 'Manual', '2022-09-05 13:58:07', '2022-09-05 13:58:07');

-- --------------------------------------------------------

--
-- Table structure for table `audit_trails`
--

DROP TABLE IF EXISTS `audit_trails`;
CREATE TABLE IF NOT EXISTS `audit_trails` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `action` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_by` bigint UNSIGNED NOT NULL,
  `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `module_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `old_values` json DEFAULT NULL,
  `new_values` json DEFAULT NULL,
  `ip_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `audit_trails_action_by_foreign` (`action_by`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `audit_trails`
--

INSERT INTO `audit_trails` (`id`, `action`, `action_description`, `action_by`, `value`, `module_name`, `old_values`, `new_values`, `ip_address`, `created_at`, `updated_at`) VALUES
(1, 'INSERT', 'Admin has created a record in the programs table', 1, NULL, 'Program', 'null', '{\"faculty_id\": \"1\", \"program_name\": \"Pure Mathematics\"}', '::1', '2024-04-19 10:18:37', '2024-04-19 10:18:37'),
(2, 'INSERT', 'Admin has created a record in the academic_year table', 1, NULL, 'AcademicYear', 'null', '{\"academic_year_name\": \"Year 1\"}', '::1', '2024-04-19 10:18:52', '2024-04-19 10:18:52'),
(3, 'INSERT', 'Admin has created a record in the academic_year table', 1, NULL, 'AcademicYear', 'null', '{\"academic_year_name\": \"Year 2\"}', '::1', '2024-04-19 10:18:57', '2024-04-19 10:18:57'),
(4, 'INSERT', 'Admin has created a record in the academic_year table', 1, NULL, 'AcademicYear', 'null', '{\"academic_year_name\": \"Year 3\"}', '::1', '2024-04-19 10:19:01', '2024-04-19 10:19:01'),
(5, 'INSERT', 'Admin has created a record in the academic_year table', 1, NULL, 'AcademicYear', 'null', '{\"academic_year_name\": \"Year 4\"}', '::1', '2024-04-19 10:19:04', '2024-04-19 10:19:04'),
(6, 'INSERT', 'Admin has created a record in the academic_year table', 1, NULL, 'AcademicYear', 'null', '{\"academic_year_name\": \"Year 5\"}', '::1', '2024-04-19 10:19:06', '2024-04-19 10:19:06'),
(7, 'INSERT', 'Admin has created a record in the academic_session table', 1, NULL, 'AcademicSession', 'null', '{\"academic_session_name\": \"Term 1\"}', '::1', '2024-04-19 10:19:10', '2024-04-19 10:19:10'),
(8, 'INSERT', 'Admin has created a record in the academic_session table', 1, NULL, 'AcademicSession', 'null', '{\"academic_session_name\": \"Term 2\"}', '::1', '2024-04-19 10:19:13', '2024-04-19 10:19:13'),
(9, 'INSERT', 'Admin has created a record in the academic_session table', 1, NULL, 'AcademicSession', 'null', '{\"academic_session_name\": \"Term 3\"}', '::1', '2024-04-19 10:19:15', '2024-04-19 10:19:15'),
(10, 'INSERT', 'Admin has created a record in the academic_session table', 1, NULL, 'AcademicSession', 'null', '{\"academic_session_name\": \"Semester 1\"}', '::1', '2024-04-19 10:19:18', '2024-04-19 10:19:18'),
(11, 'INSERT', 'Admin has created a record in the academic_session table', 1, NULL, 'AcademicSession', 'null', '{\"academic_session_name\": \"Semester 2\"}', '::1', '2024-04-19 10:19:20', '2024-04-19 10:19:20'),
(12, 'INSERT', 'Admin has created a record in the marking_scheme table', 1, NULL, 'MarkingScheme', 'null', '{\"scheme\": \"BI110 Marking Scheme\", \"ca_exam\": \"40\", \"final_exam\": \"60\"}', '::1', '2024-04-19 10:19:37', '2024-04-19 10:19:37'),
(13, 'INSERT', 'Admin has created a record in the courses table', 1, NULL, 'Course', 'null', '{\"course_code\": \"BI112\", \"course_name\": \"Intro to Biology\", \"course_type_id\": \"2\", \"marking_scheme_id\": \"1\"}', '::1', '2024-04-19 10:20:06', '2024-04-19 10:20:06'),
(14, 'INSERT', 'Admin has created a record in the course_manager table', 1, NULL, 'CourseManager', 'null', '{\"user_id\": \"1\", \"course_id\": \"1\"}', '::1', '2024-04-19 10:20:19', '2024-04-19 10:20:19'),
(15, 'INSERT', 'Admin has created a record in the academic_path table', 1, NULL, 'AcademicPath', 'null', '{\"name\": \"Biology Academic Path\"}', '::1', '2024-04-19 10:20:28', '2024-04-19 10:20:28'),
(16, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"1\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\"}', '::1', '2024-04-19 10:20:37', '2024-04-19 10:20:37'),
(17, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"2\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"2\"}', '::1', '2024-04-19 10:20:43', '2024-04-19 10:20:43'),
(18, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"3\", \"academic_path_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"3\"}', '::1', '2024-04-19 10:20:48', '2024-04-19 10:20:48'),
(19, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"4\", \"academic_path_id\": \"1\", \"academic_year_id\": \"2\", \"academic_session_id\": \"1\"}', '::1', '2024-04-19 10:20:57', '2024-04-19 10:20:57'),
(20, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"5\", \"academic_path_id\": \"1\", \"academic_year_id\": \"2\", \"academic_session_id\": \"2\"}', '::1', '2024-04-19 10:21:06', '2024-04-19 10:21:06'),
(21, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"6\", \"academic_path_id\": \"1\", \"academic_year_id\": \"2\", \"academic_session_id\": \"3\"}', '::1', '2024-04-19 10:21:15', '2024-04-19 10:21:15'),
(22, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"7\", \"academic_path_id\": \"1\", \"academic_year_id\": \"3\", \"academic_session_id\": \"1\"}', '::1', '2024-04-19 10:21:21', '2024-04-19 10:21:21'),
(23, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"8\", \"academic_path_id\": \"1\", \"academic_year_id\": \"3\", \"academic_session_id\": \"2\"}', '::1', '2024-04-19 10:21:26', '2024-04-19 10:21:26'),
(24, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"9\", \"academic_path_id\": \"1\", \"academic_year_id\": \"3\", \"academic_session_id\": \"3\"}', '::1', '2024-04-19 10:21:32', '2024-04-19 10:21:32'),
(25, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"10\", \"academic_path_id\": \"1\", \"academic_year_id\": \"4\", \"academic_session_id\": \"1\"}', '::1', '2024-04-19 10:21:41', '2024-04-19 10:21:41'),
(26, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"11\", \"academic_path_id\": \"1\", \"academic_year_id\": \"4\", \"academic_session_id\": \"2\"}', '::1', '2024-04-19 10:21:48', '2024-04-19 10:21:48'),
(27, 'INSERT', 'Admin has created a record in the academic_path_details table', 1, NULL, 'AcademicPathDetails', 'null', '{\"level\": \"12\", \"academic_path_id\": \"1\", \"academic_year_id\": \"4\", \"academic_session_id\": \"3\"}', '::1', '2024-04-19 10:21:53', '2024-04-19 10:21:53'),
(28, 'INSERT', 'Admin has created a record in the programs table', 1, NULL, 'Program', 'null', '{\"faculty_id\": \"1\", \"program_name\": \"Biology\"}', '::1', '2024-04-19 10:23:19', '2024-04-19 10:23:19'),
(29, 'INSERT', 'Admin has created a record in the program_structure_details table', 1, NULL, 'ProgramStructureDetail', 'null', '{\"course_id\": \"1\", \"academic_year_id\": \"1\", \"academic_session_id\": \"1\", \"program_structure_id\": \"1\"}', '::1', '2024-04-19 10:23:51', '2024-04-19 10:23:51'),
(30, 'INSERT', 'Admin has created a record in the fee_setup table', 1, NULL, 'FeeSetup', 'null', '{\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"Fees for Term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}', '::1', '2024-04-19 10:24:53', '2024-04-19 10:24:53'),
(31, 'INSERT', 'Admin has created a record in the fee_setup table', 1, NULL, 'FeeSetup', 'null', '{\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"Fees for Term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}', '::1', '2024-04-19 10:27:05', '2024-04-19 10:27:05'),
(32, 'INSERT', 'Admin has created a record in the fee_setup table', 1, NULL, 'FeeSetup', 'null', '{\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}', '::1', '2024-04-19 10:32:55', '2024-04-19 10:32:55'),
(33, 'INSERT', 'Admin has created a record in the fee_setup table', 1, NULL, 'FeeSetup', 'null', '{\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}', '::1', '2024-04-19 10:33:21', '2024-04-19 10:33:21'),
(34, 'INSERT', 'Admin has created a record in the fee_setup table', 1, NULL, 'FeeSetup', 'null', '{\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 1\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"1\", \"minimum_amount_type\": \"percentage\"}', '::1', '2024-04-19 10:40:29', '2024-04-19 10:40:29'),
(35, 'INSERT', 'Admin has created a record in the fee_setup table', 1, NULL, 'FeeSetup', 'null', '{\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 2\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"2\", \"minimum_amount_type\": \"percentage\"}', '::1', '2024-04-19 10:41:17', '2024-04-19 10:41:17'),
(36, 'INSERT', 'Admin has created a record in the fee_setup table', 1, NULL, 'FeeSetup', 'null', '{\"entry_year\": \"2025\", \"program_id\": \"2\", \"minimum_amount\": \"60\", \"program_amount\": \"4000\", \"fee_category_id\": 2, \"fee_description\": \"fees for term 3\", \"minimum_other_fees\": \"1\", \"academic_session_id\": \"3\", \"minimum_amount_type\": \"percentage\"}', '::1', '2024-04-19 10:41:50', '2024-04-19 10:41:50'),
(37, 'INSERT', 'Admin has created a record in the fee_setup_course table', 1, NULL, 'FeeSetupCourse', 'null', '{\"course_id\": \"1\", \"fee_setup_id\": \"5\", \"course_amount\": \"1500\"}', '::1', '2024-04-19 10:53:48', '2024-04-19 10:53:48'),
(38, 'INSERT', 'Admin has created a record in the fee_setup_other table', 1, NULL, 'FeeSetupOther', 'null', '{\"fee_amount\": \"400\", \"fee_type_id\": \"3\", \"fee_setup_id\": \"5\"}', '::1', '2024-04-19 13:09:07', '2024-04-19 13:09:07'),
(39, 'INSERT', 'Admin has created a record in the fee_setup_other table', 1, NULL, 'FeeSetupOther', 'null', '{\"fee_amount\": \"750\", \"fee_type_id\": \"8\", \"fee_setup_id\": \"5\"}', '::1', '2024-04-19 13:13:42', '2024-04-19 13:13:42'),
(40, 'INSERT', 'Admin has created a record in the fee_setup_course table', 1, NULL, 'FeeSetupCourse', 'null', '{\"course_id\": \"1\", \"fee_setup_id\": \"7\", \"course_amount\": \"1000\"}', '::1', '2024-04-19 13:14:11', '2024-04-19 13:14:11'),
(41, 'INSERT', 'Admin has created a record in the fee_setup_course table', 1, NULL, 'FeeSetupCourse', 'null', '{\"course_id\": \"1\", \"fee_setup_id\": \"6\", \"course_amount\": \"1500\"}', '::1', '2024-04-19 13:39:54', '2024-04-19 13:39:54'),
(42, 'INSERT', 'Admin has created a record in the grading_scheme_implementation table', 1, NULL, 'GradingSchemeImplementation', 'null', '{\"program_id\": 1}', '::1', '2024-04-19 13:54:53', '2024-04-19 13:54:53'),
(43, 'INSERT', 'Admin has created a record in the grading_scheme_implementation table', 1, NULL, 'GradingSchemeImplementation', 'null', '{\"program_id\": 2}', '::1', '2024-04-19 13:54:53', '2024-04-19 13:54:53'),
(44, 'INSERT', 'Admin has created a record in the degree_scheme_implementation table', 1, NULL, 'DegreeSchemeImplementation', 'null', '{\"program_id\": 1}', '::1', '2024-04-19 14:09:09', '2024-04-19 14:09:09'),
(45, 'INSERT', 'Admin has created a record in the degree_scheme_implementation table', 1, NULL, 'DegreeSchemeImplementation', 'null', '{\"program_id\": 2}', '::1', '2024-04-19 14:09:09', '2024-04-19 14:09:09'),
(46, 'INSERT', 'Admin has created a record in the grading_scheme table', 1, NULL, 'GradingScheme', 'null', '{\"scheme\": \"BI110 Grading System\"}', '::1', '2024-04-19 14:15:38', '2024-04-19 14:15:38'),
(47, 'INSERT', 'Admin has created a record in the grading_scheme_details table', 1, NULL, 'GradingSchemeDetail', 'null', '{\"grade\": \"F\", \"point\": \"0\", \"low_mark\": \"0\", \"high_mark\": \"39\", \"course_comment\": \"fail\", \"grading_scheme_id\": \"0\"}', '::1', '2024-04-19 14:16:31', '2024-04-19 14:16:31'),
(48, 'INSERT', 'Admin has created a record in the grading_scheme_details table', 1, NULL, 'GradingSchemeDetail', 'null', '{\"grade\": null, \"point\": null, \"low_mark\": \"0\", \"high_mark\": \"0\", \"grading_scheme_id\": \"1\"}', '::1', '2024-04-19 14:24:03', '2024-04-19 14:24:03'),
(49, 'INSERT', 'Admin has created a record in the grading_scheme_details table', 1, NULL, 'GradingSchemeDetail', 'null', '{\"grade\": \"F\", \"point\": \"0\", \"low_mark\": \"0\", \"high_mark\": \"39\", \"grading_scheme_id\": \"0\"}', '::1', '2024-04-19 14:25:19', '2024-04-19 14:25:19'),
(50, 'INSERT', 'Admin has created a record in the grading_scheme_details table', 1, NULL, 'GradingSchemeDetail', 'null', '{\"grade\": \"F\", \"point\": \"0\", \"low_mark\": \"0\", \"high_mark\": \"39\", \"grading_scheme_id\": \"0\"}', '::1', '2024-04-19 14:29:44', '2024-04-19 14:29:44'),
(51, 'INSERT', 'Admin has created a record in the grading_scheme_details table', 1, NULL, 'GradingSchemeDetail', 'null', '{\"grade\": \"F\", \"point\": \"0\", \"low_mark\": \"0\", \"high_mark\": \"39\", \"grading_scheme_id\": \"1\"}', '::1', '2024-04-19 14:49:08', '2024-04-19 14:49:08'),
(52, 'INSERT', 'Admin has created a record in the grading_scheme_details table', 1, NULL, 'GradingSchemeDetail', 'null', '{\"grade\": \"0\", \"point\": \"C\", \"low_mark\": \"40\", \"high_mark\": \"54\", \"grading_scheme_id\": \"1\"}', '::1', '2024-04-19 14:50:50', '2024-04-19 14:50:50');

-- --------------------------------------------------------

--
-- Table structure for table `balances`
--

DROP TABLE IF EXISTS `balances`;
CREATE TABLE IF NOT EXISTS `balances` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` int NOT NULL,
  `amount` int NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `cash_books`
--

DROP TABLE IF EXISTS `cash_books`;
CREATE TABLE IF NOT EXISTS `cash_books` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `courses`
--

DROP TABLE IF EXISTS `courses`;
CREATE TABLE IF NOT EXISTS `courses` (
  `id` int NOT NULL AUTO_INCREMENT,
  `course_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `course_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `marking_scheme_id` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `course_type_id` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `courses_FK` (`course_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `courses`
--

INSERT INTO `courses` (`id`, `course_name`, `course_code`, `marking_scheme_id`, `course_type_id`, `created_at`, `updated_at`) VALUES
(1, 'Intro to Biology', 'BI112', '1', 2, '2024-04-19 12:20:06', '2024-04-19 12:20:06');

-- --------------------------------------------------------

--
-- Table structure for table `course_comment_settings`
--

DROP TABLE IF EXISTS `course_comment_settings`;
CREATE TABLE IF NOT EXISTS `course_comment_settings` (
  `id` int NOT NULL AUTO_INCREMENT,
  `percent_course_pass` varchar(255) NOT NULL,
  `comment` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `course_manager`
--

DROP TABLE IF EXISTS `course_manager`;
CREATE TABLE IF NOT EXISTS `course_manager` (
  `id` int NOT NULL AUTO_INCREMENT,
  `course_id` int NOT NULL,
  `user_id` int NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `course_manager_FK_1` (`course_id`),
  KEY `course_manager_FK` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `course_manager`
--

INSERT INTO `course_manager` (`id`, `course_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 1, 1, '2024-04-19 12:20:19', '2024-04-19 12:20:19');

-- --------------------------------------------------------

--
-- Table structure for table `course_prerequisite`
--

DROP TABLE IF EXISTS `course_prerequisite`;
CREATE TABLE IF NOT EXISTS `course_prerequisite` (
  `id` int NOT NULL AUTO_INCREMENT,
  `course_id` int NOT NULL,
  `prerequisite_course_id` int NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `course_prerequisite_FK` (`course_id`),
  KEY `course_prerequisite_FK_1` (`prerequisite_course_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `course_status`
--

DROP TABLE IF EXISTS `course_status`;
CREATE TABLE IF NOT EXISTS `course_status` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` enum('active','exempted','repeated') NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `course_status`
--

INSERT INTO `course_status` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'active', '2024-01-03 15:11:10', '2024-01-03 15:11:10'),
(2, 'exempted', '2024-01-03 15:11:34', '2024-01-03 15:11:34'),
(3, 'repeated', '2024-01-03 15:11:34', '2024-01-03 15:11:34');

-- --------------------------------------------------------

--
-- Table structure for table `course_type`
--

DROP TABLE IF EXISTS `course_type`;
CREATE TABLE IF NOT EXISTS `course_type` (
  `id` int NOT NULL AUTO_INCREMENT,
  `course_type_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `course_point` double NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `course_type`
--

INSERT INTO `course_type` (`id`, `course_type_name`, `course_point`, `created_at`, `updated_at`) VALUES
(1, 'Half Course', 2.5, '2022-08-11 14:03:48', '2022-08-11 14:03:48'),
(2, 'Full Course', 5, '2022-08-11 14:03:48', '2022-08-11 14:03:48');

-- --------------------------------------------------------

--
-- Table structure for table `degree_scheme`
--

DROP TABLE IF EXISTS `degree_scheme`;
CREATE TABLE IF NOT EXISTS `degree_scheme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `scheme_name` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `degree_scheme_details`
--

DROP TABLE IF EXISTS `degree_scheme_details`;
CREATE TABLE IF NOT EXISTS `degree_scheme_details` (
  `id` int NOT NULL AUTO_INCREMENT,
  `degree_scheme_id` int NOT NULL,
  `low_point` varchar(255) NOT NULL,
  `high_point` varchar(255) NOT NULL,
  `degree` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `degree_scheme_details_FK` (`degree_scheme_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `degree_scheme_implementation`
--

DROP TABLE IF EXISTS `degree_scheme_implementation`;
CREATE TABLE IF NOT EXISTS `degree_scheme_implementation` (
  `id` int NOT NULL AUTO_INCREMENT,
  `degree_scheme_id` int DEFAULT NULL,
  `program_id` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `degree_scheme_implementation_FK` (`degree_scheme_id`),
  KEY `degree_scheme_implementation_FK_1` (`program_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `degree_scheme_implementation`
--

INSERT INTO `degree_scheme_implementation` (`id`, `degree_scheme_id`, `program_id`, `created_at`, `updated_at`) VALUES
(1, NULL, 1, '2024-04-19 16:09:09', '2024-04-19 16:09:09'),
(2, NULL, 2, '2024-04-19 16:09:09', '2024-04-19 16:09:09');

-- --------------------------------------------------------

--
-- Table structure for table `email_attatment`
--

DROP TABLE IF EXISTS `email_attatment`;
CREATE TABLE IF NOT EXISTS `email_attatment` (
  `id` int NOT NULL AUTO_INCREMENT,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `end_comments`
--

DROP TABLE IF EXISTS `end_comments`;
CREATE TABLE IF NOT EXISTS `end_comments` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `program_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lower_bound` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `upper_bound` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `exam_board`
--

DROP TABLE IF EXISTS `exam_board`;
CREATE TABLE IF NOT EXISTS `exam_board` (
  `id` int NOT NULL AUTO_INCREMENT,
  `board_name` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `exam_board`
--

INSERT INTO `exam_board` (`id`, `board_name`, `created_at`, `updated_at`) VALUES
(1, 'ECZ', '2022-09-05 13:44:51', '2022-09-05 13:44:51'),
(2, 'Grade12ES', '2022-09-05 13:44:51', '2022-09-05 13:44:51'),
(3, 'Certificate', '2022-09-05 13:44:51', '2022-09-05 13:44:51'),
(4, 'Diploma', '2022-09-05 13:44:51', '2022-09-05 13:44:51'),
(5, 'Degree', '2022-09-05 13:44:51', '2022-09-05 13:44:51');

-- --------------------------------------------------------

--
-- Table structure for table `exam_locks`
--

DROP TABLE IF EXISTS `exam_locks`;
CREATE TABLE IF NOT EXISTS `exam_locks` (
  `id` int NOT NULL AUTO_INCREMENT,
  `status` enum('open','close') NOT NULL,
  `academic_session_id` int NOT NULL,
  `academic_year_id` int NOT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `exam_locks_FK` (`academic_session_id`),
  KEY `exam_locks_FK_1` (`academic_year_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `faculty`
--

DROP TABLE IF EXISTS `faculty`;
CREATE TABLE IF NOT EXISTS `faculty` (
  `id` int NOT NULL AUTO_INCREMENT,
  `faculty_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `faculty`
--

INSERT INTO `faculty` (`id`, `faculty_name`, `created_at`, `updated_at`) VALUES
(1, 'School of Mathematics and Natural Sciences', '2024-04-19 12:18:30', '2024-04-19 12:18:30');

-- --------------------------------------------------------

--
-- Table structure for table `failed_courses`
--

DROP TABLE IF EXISTS `failed_courses`;
CREATE TABLE IF NOT EXISTS `failed_courses` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_no` varchar(50) NOT NULL,
  `course_id` varchar(50) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `failed_jobs`
--

DROP TABLE IF EXISTS `failed_jobs`;
CREATE TABLE IF NOT EXISTS `failed_jobs` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `fee_category`
--

DROP TABLE IF EXISTS `fee_category`;
CREATE TABLE IF NOT EXISTS `fee_category` (
  `id` int NOT NULL AUTO_INCREMENT,
  `fee_category` varchar(255) NOT NULL,
  `craeted_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;

--
-- Dumping data for table `fee_category`
--

INSERT INTO `fee_category` (`id`, `fee_category`, `craeted_at`, `updated_at`) VALUES
(1, 'Course', '2024-04-19 12:39:23', '2024-04-19 12:39:23'),
(2, 'Program', '2024-04-19 12:39:23', '2024-04-19 12:39:23'),
(3, 'Other', '2024-04-19 12:39:33', '2024-04-19 12:39:33');

-- --------------------------------------------------------

--
-- Table structure for table `fee_setup`
--

DROP TABLE IF EXISTS `fee_setup`;
CREATE TABLE IF NOT EXISTS `fee_setup` (
  `id` int NOT NULL AUTO_INCREMENT,
  `fee_description` varchar(255) DEFAULT NULL,
  `fee_category_id` int DEFAULT NULL,
  `entry_year` varchar(255) DEFAULT NULL,
  `minimum_other_fees` tinyint(1) NOT NULL,
  `academic_session_id` int DEFAULT NULL,
  `program_id` int DEFAULT NULL,
  `minimum_amount` varchar(255) DEFAULT NULL,
  `minimum_amount_type` enum('percentage','actual') DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `program_amount` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `fee_setup_FK` (`fee_category_id`),
  KEY `fee_setup_FK_1` (`academic_session_id`),
  KEY `fee_setup_FK_2` (`program_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;

--
-- Dumping data for table `fee_setup`
--

INSERT INTO `fee_setup` (`id`, `fee_description`, `fee_category_id`, `entry_year`, `minimum_other_fees`, `academic_session_id`, `program_id`, `minimum_amount`, `minimum_amount_type`, `created_at`, `updated_at`, `program_amount`) VALUES
(5, 'fees for term 1', 2, '2025', 1, 1, 2, '60', 'percentage', '2024-04-19 12:40:29', '2024-04-19 12:40:29', '4000'),
(6, 'fees for term 2', 2, '2025', 1, 2, 2, '60', 'percentage', '2024-04-19 12:41:17', '2024-04-19 12:41:17', '4000'),
(7, 'fees for term 3', 2, '2025', 1, 3, 2, '60', 'percentage', '2024-04-19 12:41:50', '2024-04-19 12:41:50', '4000');

-- --------------------------------------------------------

--
-- Table structure for table `fee_setup_course`
--

DROP TABLE IF EXISTS `fee_setup_course`;
CREATE TABLE IF NOT EXISTS `fee_setup_course` (
  `id` int NOT NULL AUTO_INCREMENT,
  `course_id` int NOT NULL,
  `fee_setup_id` int NOT NULL,
  `course_amount` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `fee_setup_course_FK` (`course_id`),
  KEY `fee_setup_course_FK_1` (`fee_setup_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `fee_setup_course`
--

INSERT INTO `fee_setup_course` (`id`, `course_id`, `fee_setup_id`, `course_amount`, `created_at`, `updated_at`) VALUES
(1, 1, 5, '1500', '2024-04-19 12:53:48', '2024-04-19 12:53:48'),
(2, 1, 7, '1000', '2024-04-19 15:14:11', '2024-04-19 15:14:11'),
(3, 1, 6, '1500', '2024-04-19 15:39:54', '2024-04-19 15:39:54');

-- --------------------------------------------------------

--
-- Table structure for table `fee_setup_other`
--

DROP TABLE IF EXISTS `fee_setup_other`;
CREATE TABLE IF NOT EXISTS `fee_setup_other` (
  `id` int NOT NULL AUTO_INCREMENT,
  `fee_type_id` int NOT NULL,
  `fee_amount` int NOT NULL,
  `fee_setup_id` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `fee_setup_other_FK` (`fee_setup_id`),
  KEY `fee_setup_other_FK_1` (`fee_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `fee_setup_other`
--

INSERT INTO `fee_setup_other` (`id`, `fee_type_id`, `fee_amount`, `fee_setup_id`, `created_at`, `updated_at`) VALUES
(1, 3, 400, 5, '2024-04-19 15:09:07', '2024-04-19 15:09:07'),
(2, 8, 750, 5, '2024-04-19 15:13:42', '2024-04-19 15:13:42');

-- --------------------------------------------------------

--
-- Table structure for table `fee_type`
--

DROP TABLE IF EXISTS `fee_type`;
CREATE TABLE IF NOT EXISTS `fee_type` (
  `id` int NOT NULL AUTO_INCREMENT,
  `fee_name` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=latin1;

--
-- Dumping data for table `fee_type`
--

INSERT INTO `fee_type` (`id`, `fee_name`, `created_at`, `updated_at`) VALUES
(1, 'Registration Fee', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(2, 'Caution Fee', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(3, 'Examination Fee', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(4, 'Student Identity Card', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(5, 'Residential Registration fee', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(6, 'Late Registration', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(7, 'Zaou Student Union', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(8, 'Graduation', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(9, 'Initial Balance-SRMS', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(10, 'ICT Fee', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(11, 'Library Fee', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(12, 'Maintenance Fee', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(13, 'Teaching Practice', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(14, 'Moot Court', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(15, 'Dessertation And Research', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(16, 'Field Work-Practice', '2023-01-11 11:58:49', '2023-01-11 11:58:49'),
(17, 'Course Overload', '2023-01-11 11:58:49', '2023-01-11 11:58:49');

-- --------------------------------------------------------

--
-- Table structure for table `file_type`
--

DROP TABLE IF EXISTS `file_type`;
CREATE TABLE IF NOT EXISTS `file_type` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `file_type_name` enum('degree','diploma','certificate','other') NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `grading_scheme`
--

DROP TABLE IF EXISTS `grading_scheme`;
CREATE TABLE IF NOT EXISTS `grading_scheme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `scheme` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `grading_scheme`
--

INSERT INTO `grading_scheme` (`id`, `scheme`, `created_at`, `updated_at`) VALUES
(1, 'BI110 Grading System', '2024-04-19 16:15:38', '2024-04-19 16:15:38');

-- --------------------------------------------------------

--
-- Table structure for table `grading_scheme_details`
--

DROP TABLE IF EXISTS `grading_scheme_details`;
CREATE TABLE IF NOT EXISTS `grading_scheme_details` (
  `id` int NOT NULL AUTO_INCREMENT,
  `grading_scheme_id` int NOT NULL,
  `high_mark` varchar(255) NOT NULL,
  `low_mark` varchar(255) NOT NULL,
  `grade` varchar(255) NOT NULL,
  `point` varchar(255) NOT NULL,
  `course_comment` enum('pass','fail') NOT NULL DEFAULT 'fail',
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `grading_scheme_details_FK` (`grading_scheme_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `grading_scheme_details`
--

INSERT INTO `grading_scheme_details` (`id`, `grading_scheme_id`, `high_mark`, `low_mark`, `grade`, `point`, `course_comment`, `created_at`, `updated_at`) VALUES
(4, 1, '39', '0', 'F', '0', 'fail', '2024-04-19 16:49:08', '2024-04-19 16:49:08'),
(5, 1, '54', '40', '0', 'C', 'fail', '2024-04-19 16:50:50', '2024-04-19 16:50:50');

-- --------------------------------------------------------

--
-- Table structure for table `grading_scheme_implementation`
--

DROP TABLE IF EXISTS `grading_scheme_implementation`;
CREATE TABLE IF NOT EXISTS `grading_scheme_implementation` (
  `id` int NOT NULL AUTO_INCREMENT,
  `grading_scheme_id` int DEFAULT NULL,
  `program_id` int DEFAULT NULL,
  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `grading_scheme_implementation_FK` (`grading_scheme_id`),
  KEY `grading_scheme_implementation_FK_1` (`program_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `grading_scheme_implementation`
--

INSERT INTO `grading_scheme_implementation` (`id`, `grading_scheme_id`, `program_id`, `created_at`, `updated_at`) VALUES
(1, NULL, 1, '2024-04-19 15:54:53', '2024-04-19 15:54:53'),
(2, NULL, 2, '2024-04-19 15:54:53', '2024-04-19 15:54:53');

-- --------------------------------------------------------

--
-- Table structure for table `institution`
--

DROP TABLE IF EXISTS `institution`;
CREATE TABLE IF NOT EXISTS `institution` (
  `id` int NOT NULL AUTO_INCREMENT,
  `institution_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `institution_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `institution_logo_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `receipt_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `studen_statement_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `invoice_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `acceptance_letter_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transcript_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `confirmation_slip_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `jobs`
--

DROP TABLE IF EXISTS `jobs`;
CREATE TABLE IF NOT EXISTS `jobs` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `queue` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` tinyint UNSIGNED NOT NULL,
  `reserved_at` int UNSIGNED DEFAULT NULL,
  `available_at` int UNSIGNED NOT NULL,
  `created_at` int UNSIGNED NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `jobs`
--

INSERT INTO `jobs` (`id`, `queue`, `payload`, `attempts`, `reserved_at`, `available_at`, `created_at`) VALUES
(3, 'default', '{\"uuid\":\"1c9a8b89-abbf-4b20-842f-08a518fc5968\",\"displayName\":\"App\\\\Jobs\\\\ProcessEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\ProcessEmail\",\"command\":\"O:21:\\\"App\\\\Jobs\\\\ProcessEmail\\\":11:{s:10:\\\"applicants\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":4:{s:5:\\\"class\\\";s:20:\\\"App\\\\Models\\\\Applicant\\\";s:2:\\\"id\\\";a:1:{i:0;N;}s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";}s:3:\\\"job\\\";N;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";N;s:11:\\\"afterCommit\\\";N;s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}}\"}}', 0, NULL, 1699358604, 1699358604),
(4, 'default', '{\"uuid\":\"6640b653-5635-4aa6-a522-f6b9e38aca35\",\"displayName\":\"App\\\\Jobs\\\\ProcessEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\ProcessEmail\",\"command\":\"O:21:\\\"App\\\\Jobs\\\\ProcessEmail\\\":11:{s:10:\\\"applicants\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":4:{s:5:\\\"class\\\";s:20:\\\"App\\\\Models\\\\Applicant\\\";s:2:\\\"id\\\";a:1:{i:0;N;}s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";}s:3:\\\"job\\\";N;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";N;s:11:\\\"afterCommit\\\";N;s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}}\"}}', 0, NULL, 1699358682, 1699358682),
(5, 'default', '{\"uuid\":\"4d1dbaed-83ce-474c-907a-e34666a33850\",\"displayName\":\"App\\\\Jobs\\\\ProcessEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\ProcessEmail\",\"command\":\"O:21:\\\"App\\\\Jobs\\\\ProcessEmail\\\":11:{s:10:\\\"applicants\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":4:{s:5:\\\"class\\\";s:20:\\\"App\\\\Models\\\\Applicant\\\";s:2:\\\"id\\\";a:1:{i:0;N;}s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";}s:3:\\\"job\\\";N;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";N;s:11:\\\"afterCommit\\\";N;s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}}\"}}', 0, NULL, 1699358722, 1699358722),
(6, 'default', '{\"uuid\":\"a5ecc97f-7a16-468b-913b-27409ebf634b\",\"displayName\":\"App\\\\Jobs\\\\ProcessEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\ProcessEmail\",\"command\":\"O:21:\\\"App\\\\Jobs\\\\ProcessEmail\\\":11:{s:10:\\\"applicants\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":4:{s:5:\\\"class\\\";s:20:\\\"App\\\\Models\\\\Applicant\\\";s:2:\\\"id\\\";a:1:{i:0;N;}s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";}s:3:\\\"job\\\";N;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";N;s:11:\\\"afterCommit\\\";N;s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}}\"}}', 0, NULL, 1699358737, 1699358737);

-- --------------------------------------------------------

--
-- Table structure for table `lecturer_locks`
--

DROP TABLE IF EXISTS `lecturer_locks`;
CREATE TABLE IF NOT EXISTS `lecturer_locks` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `user_id` bigint UNSIGNED NOT NULL,
  `academic_year_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `academic_session_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('open','closed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lecturer_locks_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `marking_scheme`
--

DROP TABLE IF EXISTS `marking_scheme`;
CREATE TABLE IF NOT EXISTS `marking_scheme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `scheme` varchar(255) NOT NULL,
  `ca_exam` varchar(255) NOT NULL,
  `final_exam` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `marking_scheme`
--

INSERT INTO `marking_scheme` (`id`, `scheme`, `ca_exam`, `final_exam`, `created_at`, `updated_at`) VALUES
(1, 'BI110 Marking Scheme', '40', '60', '2024-04-19 12:19:37', '2024-04-19 12:19:37');

-- --------------------------------------------------------

--
-- Table structure for table `marking_scheme_implementation`
--

DROP TABLE IF EXISTS `marking_scheme_implementation`;
CREATE TABLE IF NOT EXISTS `marking_scheme_implementation` (
  `id` int NOT NULL AUTO_INCREMENT,
  `marking_scheme_id` int NOT NULL,
  `course_id` int NOT NULL,
  `academic_year_id` int NOT NULL,
  `academic_session_id` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `marking_scheme_implementation_FK` (`marking_scheme_id`),
  KEY `marking_scheme_implementation_FK_1` (`course_id`),
  KEY `marking_scheme_implementation_FK_2` (`academic_session_id`),
  KEY `marking_scheme_implementation_FK_3` (`academic_year_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `migrations`
--

DROP TABLE IF EXISTS `migrations`;
CREATE TABLE IF NOT EXISTS `migrations` (
  `id` int UNSIGNED NOT NULL AUTO_INCREMENT,
  `migration` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=164 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `migrations`
--

INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(53, '2022_08_10_070359_create_academic_session_table', 1),
(54, '2022_08_10_070359_create_academic_year_table', 1),
(55, '2022_08_10_070359_create_course_manager_table', 1),
(56, '2022_08_10_070359_create_course_prerequisite_table', 1),
(57, '2022_08_10_070359_create_course_type_table', 1),
(58, '2022_08_10_070359_create_courses_table', 1),
(59, '2022_08_10_070359_create_faculty_table', 1),
(60, '2022_08_10_070359_create_failed_jobs_table', 1),
(61, '2022_08_10_070359_create_instituition_table', 1),
(62, '2022_08_10_070359_create_password_resets_table', 1),
(63, '2022_08_10_070359_create_program_structure_table', 1),
(64, '2022_08_10_070359_create_programs_table', 1),
(65, '2022_08_10_070359_create_role_table', 1),
(66, '2022_08_10_070359_create_users_table', 1),
(67, '2022_08_10_070400_add_foreign_keys_to_course_prerequisite_table', 1),
(68, '2022_08_10_070400_add_foreign_keys_to_courses_table', 1),
(69, '2022_08_10_070400_add_foreign_keys_to_program_structure_table', 1),
(70, '2022_08_10_070400_add_foreign_keys_to_programs_table', 1),
(71, '2022_08_10_070400_add_foreign_keys_to_users_table', 1),
(72, '2019_12_14_000001_create_personal_access_tokens_table', 2),
(73, '2023_01_05_143835_create_jobs_table', 3),
(74, '2023_04_18_101730_create_academic_session_table', 0),
(75, '2023_04_18_101730_create_academic_year_table', 0),
(76, '2023_04_18_101730_create_applicant_table', 0),
(77, '2023_04_18_101730_create_applicant_files_table', 0),
(78, '2023_04_18_101730_create_applicant_steps_table', 0),
(79, '2023_04_18_101730_create_applicant_subject_table', 0),
(80, '2023_04_18_101730_create_applicant_type_table', 0),
(81, '2023_04_18_101730_create_application_mode_table', 0),
(82, '2023_04_18_101730_create_courses_table', 0),
(83, '2023_04_18_101730_create_course_manager_table', 0),
(84, '2023_04_18_101730_create_course_prerequisite_table', 0),
(85, '2023_04_18_101730_create_course_type_table', 0),
(86, '2023_04_18_101730_create_email_attatment_table', 0),
(87, '2023_04_18_101730_create_exam_board_table', 0),
(88, '2023_04_18_101730_create_faculty_table', 0),
(89, '2023_04_18_101730_create_failed_jobs_table', 0),
(90, '2023_04_18_101730_create_fee_category_table', 0),
(91, '2023_04_18_101730_create_fee_setup_table', 0),
(92, '2023_04_18_101730_create_fee_setup_course_table', 0),
(93, '2023_04_18_101730_create_fee_setup_other_table', 0),
(94, '2023_04_18_101730_create_fee_type_table', 0),
(95, '2023_04_18_101730_create_file_type_table', 0),
(96, '2023_04_18_101730_create_grading_scheme_table', 0),
(97, '2023_04_18_101730_create_grading_scheme_details_table', 0),
(98, '2023_04_18_101730_create_grading_scheme_implementation_table', 0),
(99, '2023_04_18_101730_create_institution_table', 0),
(100, '2023_04_18_101730_create_jobs_table', 0),
(101, '2023_04_18_101730_create_marking_scheme_table', 0),
(102, '2023_04_18_101730_create_marking_scheme_implementation_table', 0),
(103, '2023_04_18_101730_create_password_resets_table', 0),
(104, '2023_04_18_101730_create_payment_type_table', 0),
(105, '2023_04_18_101730_create_personal_access_tokens_table', 0),
(106, '2023_04_18_101730_create_programs_table', 0),
(107, '2023_04_18_101730_create_program_structure_table', 0),
(108, '2023_04_18_101730_create_program_structure_details_table', 0),
(109, '2023_04_18_101730_create_role_table', 0),
(110, '2023_04_18_101730_create_student_table', 0),
(111, '2023_04_18_101730_create_student_invoice_table', 0),
(112, '2023_04_18_101730_create_student_invoice_details_table', 0),
(113, '2023_04_18_101730_create_student_invoice_type_table', 0),
(114, '2023_04_18_101730_create_student_optional_courses_table', 0),
(115, '2023_04_18_101730_create_student_payment_table', 0),
(116, '2023_04_18_101730_create_student_quotation_table', 0),
(117, '2023_04_18_101730_create_student_quotation_details_table', 0),
(118, '2023_04_18_101730_create_student_receipt_table', 0),
(119, '2023_04_18_101730_create_student_receipt_details_table', 0),
(120, '2023_04_18_101730_create_student_registration_table', 0),
(121, '2023_04_18_101730_create_subject_table', 0),
(122, '2023_04_18_101730_create_template_letter_table', 0),
(123, '2023_04_18_101730_create_users_table', 0),
(124, '2023_04_18_101731_add_foreign_keys_to_applicant_table', 0),
(125, '2023_04_18_101731_add_foreign_keys_to_applicant_steps_table', 0),
(126, '2023_04_18_101731_add_foreign_keys_to_applicant_subject_table', 0),
(127, '2023_04_18_101731_add_foreign_keys_to_courses_table', 0),
(128, '2023_04_18_101731_add_foreign_keys_to_course_prerequisite_table', 0),
(129, '2023_04_18_101731_add_foreign_keys_to_fee_setup_table', 0),
(130, '2023_04_18_101731_add_foreign_keys_to_fee_setup_course_table', 0),
(131, '2023_04_18_101731_add_foreign_keys_to_fee_setup_other_table', 0),
(132, '2023_04_18_101731_add_foreign_keys_to_grading_scheme_details_table', 0),
(133, '2023_04_18_101731_add_foreign_keys_to_grading_scheme_implementation_table', 0),
(134, '2023_04_18_101731_add_foreign_keys_to_marking_scheme_implementation_table', 0),
(135, '2023_04_18_101731_add_foreign_keys_to_programs_table', 0),
(136, '2023_04_18_101731_add_foreign_keys_to_program_structure_table', 0),
(137, '2023_04_18_101731_add_foreign_keys_to_program_structure_details_table', 0),
(138, '2023_04_18_101731_add_foreign_keys_to_student_table', 0),
(139, '2023_04_18_101731_add_foreign_keys_to_student_invoice_table', 0),
(140, '2023_04_18_101731_add_foreign_keys_to_student_invoice_details_table', 0),
(141, '2023_04_18_101731_add_foreign_keys_to_student_optional_courses_table', 0),
(142, '2023_04_18_101731_add_foreign_keys_to_student_payment_table', 0),
(143, '2023_04_18_101731_add_foreign_keys_to_student_quotation_table', 0),
(144, '2023_04_18_101731_add_foreign_keys_to_student_quotation_details_table', 0),
(145, '2023_04_18_101731_add_foreign_keys_to_student_receipt_table', 0),
(146, '2023_04_18_101731_add_foreign_keys_to_student_receipt_details_table', 0),
(147, '2023_04_18_101731_add_foreign_keys_to_student_registration_table', 0),
(148, '2023_04_18_101731_add_foreign_keys_to_users_table', 0),
(151, '2023_10_19_174107_create_lecturer_locks_table', 4),
(152, '2024_01_21_185404_create_activity_log_table', 5),
(156, '2024_01_28_193041_create_end_comments_table', 6),
(162, '2024_02_02_115455_create_student_end_comments_table', 7),
(163, '2024_02_01_115746_create_audit_trails_table', 8);

-- --------------------------------------------------------

--
-- Table structure for table `password_resets`
--

DROP TABLE IF EXISTS `password_resets`;
CREATE TABLE IF NOT EXISTS `password_resets` (
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `payment_type`
--

DROP TABLE IF EXISTS `payment_type`;
CREATE TABLE IF NOT EXISTS `payment_type` (
  `id` int NOT NULL AUTO_INCREMENT,
  `payment_type` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `personal_access_tokens`
--

DROP TABLE IF EXISTS `personal_access_tokens`;
CREATE TABLE IF NOT EXISTS `personal_access_tokens` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `tokenable_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tokenable_id` bigint UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `abilities` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `programs`
--

DROP TABLE IF EXISTS `programs`;
CREATE TABLE IF NOT EXISTS `programs` (
  `id` int NOT NULL AUTO_INCREMENT,
  `program_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `program_structure_id` int DEFAULT NULL,
  `faculty_id` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `programs_FK` (`faculty_id`),
  KEY `program_structure_id` (`program_structure_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `programs`
--

INSERT INTO `programs` (`id`, `program_name`, `program_structure_id`, `faculty_id`, `created_at`, `updated_at`) VALUES
(1, 'Pure Mathematics', NULL, 1, '2024-04-19 12:18:37', '2024-04-19 12:18:37'),
(2, 'Biology', NULL, 1, '2024-04-19 12:23:19', '2024-04-19 12:23:19');

-- --------------------------------------------------------

--
-- Table structure for table `program_structure`
--

DROP TABLE IF EXISTS `program_structure`;
CREATE TABLE IF NOT EXISTS `program_structure` (
  `id` int NOT NULL AUTO_INCREMENT,
  `program_structure_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `academic_path_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `program_structure`
--

INSERT INTO `program_structure` (`id`, `program_structure_name`, `academic_path_id`, `created_at`, `updated_at`) VALUES
(1, 'BI Program Structure', '1', '2024-04-19 12:23:41', '2024-04-19 12:23:41');

-- --------------------------------------------------------

--
-- Table structure for table `program_structure_details`
--

DROP TABLE IF EXISTS `program_structure_details`;
CREATE TABLE IF NOT EXISTS `program_structure_details` (
  `id` int NOT NULL AUTO_INCREMENT,
  `program_structure_id` int DEFAULT NULL,
  `course_id` int DEFAULT NULL,
  `academic_year_id` int DEFAULT NULL,
  `academic_session_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academic_session_id` (`academic_session_id`),
  KEY `academic_year_id` (`academic_year_id`),
  KEY `course_id` (`course_id`),
  KEY `program_structure_id` (`program_structure_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

--
-- Dumping data for table `program_structure_details`
--

INSERT INTO `program_structure_details` (`id`, `program_structure_id`, `course_id`, `academic_year_id`, `academic_session_id`) VALUES
(1, 1, 1, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `results_publications`
--

DROP TABLE IF EXISTS `results_publications`;
CREATE TABLE IF NOT EXISTS `results_publications` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `year_id` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_id` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('unpublished','published') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpublished',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `role`
--

DROP TABLE IF EXISTS `role`;
CREATE TABLE IF NOT EXISTS `role` (
  `role_id` int NOT NULL AUTO_INCREMENT,
  `role_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`role_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `role`
--

INSERT INTO `role` (`role_id`, `role_name`, `created_at`, `updated_at`) VALUES
(1, 'admin', '2022-12-19 13:15:57', '2022-12-19 13:15:57'),
(2, 'lecturer', '2022-12-19 13:15:57', '2022-12-19 13:15:57'),
(3, 'dean', '2022-12-19 13:15:57', '2022-12-19 13:15:57'),
(4, 'applicant', '2022-12-19 13:15:57', '2022-12-19 13:15:57'),
(5, 'student', '2022-12-19 13:15:57', '2022-12-19 13:15:57');

-- --------------------------------------------------------

--
-- Table structure for table `student`
--

DROP TABLE IF EXISTS `student`;
CREATE TABLE IF NOT EXISTS `student` (
  `id` int NOT NULL AUTO_INCREMENT,
  `user_id` bigint UNSIGNED NOT NULL,
  `student_no` varchar(255) NOT NULL,
  `program_id` int NOT NULL,
  `entry_year` varchar(255) NOT NULL,
  `student_status` enum('active','inactive','suspended') DEFAULT 'active',
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_FK` (`user_id`),
  KEY `student_FK_1` (`program_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_courses`
--

DROP TABLE IF EXISTS `student_courses`;
CREATE TABLE IF NOT EXISTS `student_courses` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` varchar(11) NOT NULL,
  `academic_year_id` varchar(11) NOT NULL,
  `academic_session_id` varchar(11) NOT NULL,
  `intake_year` varchar(11) NOT NULL,
  `course_id` varchar(11) NOT NULL,
  `course_status_id` varchar(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_credit_notes`
--

DROP TABLE IF EXISTS `student_credit_notes`;
CREATE TABLE IF NOT EXISTS `student_credit_notes` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` varchar(255) DEFAULT NULL,
  `amount` varchar(255) DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `invoice_id` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_debit_notes`
--

DROP TABLE IF EXISTS `student_debit_notes`;
CREATE TABLE IF NOT EXISTS `student_debit_notes` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` varchar(255) DEFAULT NULL,
  `amount` varchar(255) DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `invoice_id` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_end_comments`
--

DROP TABLE IF EXISTS `student_end_comments`;
CREATE TABLE IF NOT EXISTS `student_end_comments` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_no` varchar(11) NOT NULL,
  `academic_session_id` varchar(11) NOT NULL,
  `academic_year_id` varchar(11) NOT NULL,
  `program_id` varchar(11) NOT NULL,
  `comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_financial_statement`
--

DROP TABLE IF EXISTS `student_financial_statement`;
CREATE TABLE IF NOT EXISTS `student_financial_statement` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` varchar(255) DEFAULT NULL,
  `invoice_id` varchar(255) DEFAULT NULL,
  `receipt_id` varchar(255) DEFAULT NULL,
  `reference_no` varchar(255) DEFAULT NULL,
  `credit` varchar(255) DEFAULT '0',
  `debit` varchar(255) DEFAULT '0',
  `entry_type` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `running_balance` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_invoice`
--

DROP TABLE IF EXISTS `student_invoice`;
CREATE TABLE IF NOT EXISTS `student_invoice` (
  `id` int NOT NULL AUTO_INCREMENT,
  `invoice_no` varchar(255) NOT NULL,
  `invoice_type_id` varchar(255) DEFAULT NULL,
  `student_id` int NOT NULL,
  `invoice_year` varchar(255) NOT NULL,
  `academic_session_id` int NOT NULL,
  `invoice_description` varchar(255) NOT NULL,
  `invoice_amount` varchar(255) NOT NULL,
  `status` enum('new','used') DEFAULT 'new',
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_invoice_FK` (`academic_session_id`),
  KEY `student_invoice_FK_1` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `student_invoice_details`
--

DROP TABLE IF EXISTS `student_invoice_details`;
CREATE TABLE IF NOT EXISTS `student_invoice_details` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_invoice_id` int NOT NULL,
  `fee_type_id` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_invoice_details_FK` (`student_invoice_id`),
  KEY `student_invoice_details_FK_1` (`fee_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `student_invoice_type`
--

DROP TABLE IF EXISTS `student_invoice_type`;
CREATE TABLE IF NOT EXISTS `student_invoice_type` (
  `id` int NOT NULL AUTO_INCREMENT,
  `invoice_type_name` varchar(255) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_markings`
--

DROP TABLE IF EXISTS `student_markings`;
CREATE TABLE IF NOT EXISTS `student_markings` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` varchar(11) NOT NULL,
  `course_id` int NOT NULL,
  `academic_session_id` int NOT NULL,
  `academic_year_id` int NOT NULL,
  `ca_exam` varchar(255) NOT NULL,
  `final_exam` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_markings_FK` (`academic_session_id`),
  KEY `student_markings_FK_1` (`academic_year_id`),
  KEY `student_markings_FK_2` (`course_id`),
  KEY `student_markings_FK_3` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_marking_total`
--

DROP TABLE IF EXISTS `student_marking_total`;
CREATE TABLE IF NOT EXISTS `student_marking_total` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_marking_id` int NOT NULL,
  `mark` varchar(255) NOT NULL,
  `grade` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_marking_total_FK` (`student_marking_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_payment`
--

DROP TABLE IF EXISTS `student_payment`;
CREATE TABLE IF NOT EXISTS `student_payment` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` int NOT NULL,
  `amount` varchar(255) NOT NULL,
  `reference_no` varchar(255) NOT NULL,
  `payment_type_id` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_payment_FK` (`student_id`),
  KEY `student_payment_FK_1` (`payment_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `student_progress`
--

DROP TABLE IF EXISTS `student_progress`;
CREATE TABLE IF NOT EXISTS `student_progress` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` varchar(225) NOT NULL,
  `year_id` varchar(255) NOT NULL,
  `session_id` varchar(255) NOT NULL,
  `std_reg_status_id` varchar(255) NOT NULL,
  `program_id` varchar(255) NOT NULL,
  `year` varchar(255) NOT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_quotation`
--

DROP TABLE IF EXISTS `student_quotation`;
CREATE TABLE IF NOT EXISTS `student_quotation` (
  `id` int NOT NULL AUTO_INCREMENT,
  `quotation_no` varchar(255) NOT NULL,
  `student_id` int NOT NULL,
  `quotation_year` varchar(255) DEFAULT NULL,
  `academic_session_id` int NOT NULL,
  `quotation_description` varchar(255) NOT NULL,
  `quotation_amount` varchar(255) NOT NULL,
  `status` enum('unused','used') NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_quotation_FK` (`academic_session_id`),
  KEY `student_quotation_FK_1` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `student_quotation_details`
--

DROP TABLE IF EXISTS `student_quotation_details`;
CREATE TABLE IF NOT EXISTS `student_quotation_details` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_quotation_id` int NOT NULL,
  `fee_type_id` int NOT NULL,
  `program_id` int DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_quotation_details_FK` (`student_quotation_id`),
  KEY `student_quotation_details_FK_1` (`fee_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `student_receipt`
--

DROP TABLE IF EXISTS `student_receipt`;
CREATE TABLE IF NOT EXISTS `student_receipt` (
  `id` int NOT NULL AUTO_INCREMENT,
  `receipt_no` varchar(255) NOT NULL,
  `student_id` int NOT NULL,
  `academic_session_id` int NOT NULL,
  `cash_book_id` varchar(255) DEFAULT NULL,
  `receipt_year` varchar(255) NOT NULL,
  `receipt_description` varchar(255) NOT NULL,
  `receipt_amount` varchar(255) NOT NULL,
  `status` enum('paid','used','refunded') DEFAULT 'paid',
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_receipt_FK` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `student_receipt_details`
--

DROP TABLE IF EXISTS `student_receipt_details`;
CREATE TABLE IF NOT EXISTS `student_receipt_details` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_receipt_id` int NOT NULL,
  `fee_type_id` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `student_receipt_details_FK` (`student_receipt_id`),
  KEY `student_receipt_details_FK_1` (`fee_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `student_refunds`
--

DROP TABLE IF EXISTS `student_refunds`;
CREATE TABLE IF NOT EXISTS `student_refunds` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` varchar(255) DEFAULT NULL,
  `amount` varchar(255) DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `receipt_id` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_registration_status`
--

DROP TABLE IF EXISTS `student_registration_status`;
CREATE TABLE IF NOT EXISTS `student_registration_status` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(20) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `student_registration_status`
--

INSERT INTO `student_registration_status` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'pending payment', '2024-01-03 13:39:04', '2024-01-03 13:39:04'),
(2, 'registered', '2024-01-03 13:39:04', '2024-03-20 12:19:21'),
(3, 'pending course appro', '2024-01-03 13:39:42', '2024-01-03 13:39:42'),
(4, 'excluded', '2024-01-03 13:39:42', '2024-01-03 13:39:42'),
(5, 'expelled', '2024-01-03 13:39:42', '2024-01-03 13:39:42'),
(6, 'withdrawn', '2024-01-03 13:40:00', '2024-01-03 13:40:00'),
(7, 'completed', '2024-03-25 13:33:20', '2024-03-25 13:33:20'),
(8, 'repeat', '2024-03-27 10:53:12', '2024-03-27 10:53:12');

-- --------------------------------------------------------

--
-- Table structure for table `student_status`
--

DROP TABLE IF EXISTS `student_status`;
CREATE TABLE IF NOT EXISTS `student_status` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_id` varchar(255) DEFAULT NULL,
  `intake` varchar(255) DEFAULT NULL,
  `session_id` varchar(255) DEFAULT NULL,
  `academic_year_id` varchar(11) NOT NULL,
  `reg_status_id` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `student_status_tracking`
--

DROP TABLE IF EXISTS `student_status_tracking`;
CREATE TABLE IF NOT EXISTS `student_status_tracking` (
  `id` int NOT NULL AUTO_INCREMENT,
  `student_no` varchar(50) NOT NULL,
  `previous_status` varchar(50) NOT NULL,
  `new_status` varchar(50) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `subject`
--

DROP TABLE IF EXISTS `subject`;
CREATE TABLE IF NOT EXISTS `subject` (
  `id` int NOT NULL AUTO_INCREMENT,
  `subject_name` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `subject`
--

INSERT INTO `subject` (`id`, `subject_name`, `created_at`, `updated_at`) VALUES
(2, 'Geography', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(3, 'Mathematics', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(4, 'Addma', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(5, 'History', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(10, 'Local language', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(11, 'French', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(25, 'Science', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(27, 'Chemistry', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(28, 'Literature', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(29, 'T.D ', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(30, 'Commerce', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(31, 'Accounts', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(33, 'Music', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(34, 'Metal Work', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(35, 'Wood Work', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(50, 'Biology', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(51, 'Physics', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(53, 'Agriculture', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(54, 'Art and Design', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(55, 'Business Studies', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(56, 'Computer Studies', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(57, 'Foreign Languange', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(58, 'Economics', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(59, 'F&N', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(61, 'Religious Studies', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(64, 'Civic Education', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(67, 'Ecomomics', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(68, 'General Studies', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(69, 'Social Studies', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(72, 'Comp Studies', '2022-09-05 13:56:38', '2022-09-05 13:56:38'),
(78, 'PE', '2022-09-05 13:56:38', '2022-09-05 13:56:38');

-- --------------------------------------------------------

--
-- Table structure for table `template_letter`
--

DROP TABLE IF EXISTS `template_letter`;
CREATE TABLE IF NOT EXISTS `template_letter` (
  `id` int NOT NULL AUTO_INCREMENT,
  `letter_name` varchar(255) NOT NULL,
  `letter` longtext NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `template_letter`
--

INSERT INTO `template_letter` (`id`, `letter_name`, `letter`, `created_at`, `updated_at`) VALUES
(4, 'Admissions', '<br style=\"box-sizing: inherit;\"><p style=\"box-sizing: inherit; margin-bottom: 1.5em; border: 0px; color: rgb(34, 34, 34); font-family: Merriweather, serif; font-size: 12.576px; letter-spacing: normal;\"><span style=\"box-sizing: inherit;float: right;\">{Institution Address}<br></span></p><p style=\"box-sizing: inherit; margin-bottom: 1.5em; border: 0px; color: rgb(34, 34, 34); font-family: Merriweather, serif; font-size: 12.576px; letter-spacing: normal;\"><span style=\"box-sizing: inherit;\"><br></span></p><p style=\"box-sizing: inherit; margin-bottom: 1.5em; border: 0px; color: rgb(34, 34, 34); font-family: Merriweather, serif; font-size: 12.576px; letter-spacing: normal;\"><span style=\"box-sizing: inherit;\">{Date}</span></p><p style=\"box-sizing: inherit; margin-bottom: 1.5em; border: 0px; color: rgb(34, 34, 34); font-family: Merriweather, serif; font-size: 12.576px; letter-spacing: normal;\"><span style=\"font-size: 12.576px; box-sizing: inherit;\">Dear {Name}</span><br></p><p style=\"box-sizing: inherit; margin-bottom: 1.5em; border: 0px; color: rgb(34, 34, 34); font-family: Merriweather, serif; font-size: 12.576px; letter-spacing: normal;\">We are pleased to inform you that you have been admitted to the class of {Intake} to study {Program} in the {Faculty} at {Institution}. You will find a \r\nfull admission package attached to this admission letter.&nbsp;It includes \r\nall the documents needed to follow up the registration which have to be \r\nsubmitted within a week. Congratulations. We are\r\n looking forward to seeing you. <span style=\"box-sizing: inherit;\"> <br></span></p><p style=\"box-sizing: inherit; margin-bottom: 1.5em; border: 0px; color: rgb(34, 34, 34); font-family: Merriweather, serif; font-size: 12.576px; letter-spacing: normal;\"><span style=\"box-sizing: inherit;\">Yours Sincerely,</span></p><p style=\"box-sizing: inherit; margin-bottom: 1.5em; border: 0px; color: rgb(34, 34, 34); font-family: Merriweather, serif; font-size: 12.576px; letter-spacing: normal;\">Admissions Officer,</p><p style=\"box-sizing: inherit; margin-bottom: 1.5em; border: 0px; color: rgb(34, 34, 34); font-family: Merriweather, serif; font-size: 12.576px; letter-spacing: normal;\">{Institution}<i>.<br></i><br></p>', '2022-12-28 13:20:30', '2023-12-04 10:06:15');

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
CREATE TABLE IF NOT EXISTS `users` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gender` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `nrc_passport` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `religion` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `size_photo_file_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `front_nrc_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `back_nrc_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `role_id` int DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`),
  UNIQUE KEY `users_nrc_pas` (`nrc_passport`),
  KEY `users_FK` (`role_id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `first_name`, `last_name`, `email`, `phone`, `email_verified_at`, `password`, `address`, `state`, `city`, `gender`, `dob`, `nrc_passport`, `religion`, `size_photo_file_path`, `front_nrc_path`, `back_nrc_path`, `role_id`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Admin', '', 'support@zynle.com', '260962408611', NULL, '$2y$10$M14WuT3SVIqsa7BHEYPpo.q0fdKUTxZGbGCUwQofICA.mBVRpUva6', 'Lusaka', NULL, 'Lusaka', NULL, '2023-02-27', '123123/12/1', NULL, 'size_photo_file_path20230227Screenshot from 2023-02-27 09-08-31.png', 'front_nrc_path20230227Screenshot from 2023-02-27 09-08-31.png', 'back_nrc_path20230227Screenshot from 2023-02-27 09-08-31.png', 2, NULL, '2023-02-27 09:00:26', '2023-02-27 09:02:10'),
(27, 'Mollie', 'Fields', 'rywawelo@mailinator.com', '+1 (348) 848-2843', NULL, '$2y$10$Fz9st2Y3c3TPs0HHIQy9H.dVEAUE/GFDGjXwwtDyFS348XR/eONrK', 'Sunt omnis dolorum o', NULL, 'Libero quos nisi vol', 'male', '1971-05-28', '123432/55/3', NULL, 'size_photo_file_path20240416portrait.jpg', 'front_nrc_path20240416id-front.png', 'back_nrc_path20240416id-back.png', 5, NULL, '2024-04-17 03:42:45', '2024-04-17 03:44:40');

--
-- Constraints for dumped tables
--

--
-- Constraints for table `applicant`
--
ALTER TABLE `applicant`
  ADD CONSTRAINT `applicant_FK` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`),
  ADD CONSTRAINT `applicant_FK_1` FOREIGN KEY (`program_id`) REFERENCES `programs` (`id`),
  ADD CONSTRAINT `applicant_FK_2` FOREIGN KEY (`exam_board_id`) REFERENCES `exam_board` (`id`),
  ADD CONSTRAINT `applicant_FK_3` FOREIGN KEY (`application_mode_id`) REFERENCES `application_mode` (`id`),
  ADD CONSTRAINT `applicant_FK_4` FOREIGN KEY (`applicant_type_id`) REFERENCES `applicant_type` (`id`);

--
-- Constraints for table `applicant_subject`
--
ALTER TABLE `applicant_subject`
  ADD CONSTRAINT `applicant_subject_FK` FOREIGN KEY (`applicant_id`) REFERENCES `applicant` (`id`),
  ADD CONSTRAINT `applicant_subject_FK_1` FOREIGN KEY (`subject_id`) REFERENCES `subject` (`id`),
  ADD CONSTRAINT `applicant_subject_FK_2` FOREIGN KEY (`exam_board_id`) REFERENCES `exam_board` (`id`);

--
-- Constraints for table `audit_trails`
--
ALTER TABLE `audit_trails`
  ADD CONSTRAINT `audit_trails_action_by_foreign` FOREIGN KEY (`action_by`) REFERENCES `users` (`id`);

--
-- Constraints for table `courses`
--
ALTER TABLE `courses`
  ADD CONSTRAINT `courses_FK` FOREIGN KEY (`course_type_id`) REFERENCES `course_type` (`id`);

--
-- Constraints for table `course_prerequisite`
--
ALTER TABLE `course_prerequisite`
  ADD CONSTRAINT `course_prerequisite_FK` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`),
  ADD CONSTRAINT `course_prerequisite_FK_1` FOREIGN KEY (`prerequisite_course_id`) REFERENCES `courses` (`id`);

--
-- Constraints for table `degree_scheme_details`
--
ALTER TABLE `degree_scheme_details`
  ADD CONSTRAINT `degree_scheme_details_FK` FOREIGN KEY (`degree_scheme_id`) REFERENCES `degree_scheme` (`id`);

--
-- Constraints for table `degree_scheme_implementation`
--
ALTER TABLE `degree_scheme_implementation`
  ADD CONSTRAINT `degree_scheme_implementation_FK` FOREIGN KEY (`degree_scheme_id`) REFERENCES `degree_scheme` (`id`),
  ADD CONSTRAINT `degree_scheme_implementation_FK_1` FOREIGN KEY (`program_id`) REFERENCES `programs` (`id`);

--
-- Constraints for table `exam_locks`
--
ALTER TABLE `exam_locks`
  ADD CONSTRAINT `exam_locks_FK` FOREIGN KEY (`academic_session_id`) REFERENCES `academic_session` (`id`),
  ADD CONSTRAINT `exam_locks_FK_1` FOREIGN KEY (`academic_year_id`) REFERENCES `academic_year` (`id`);

--
-- Constraints for table `fee_setup`
--
ALTER TABLE `fee_setup`
  ADD CONSTRAINT `fee_setup_FK` FOREIGN KEY (`fee_category_id`) REFERENCES `fee_category` (`id`),
  ADD CONSTRAINT `fee_setup_FK_1` FOREIGN KEY (`academic_session_id`) REFERENCES `academic_session` (`id`),
  ADD CONSTRAINT `fee_setup_FK_2` FOREIGN KEY (`program_id`) REFERENCES `programs` (`id`);

--
-- Constraints for table `fee_setup_course`
--
ALTER TABLE `fee_setup_course`
  ADD CONSTRAINT `fee_setup_course_FK` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`),
  ADD CONSTRAINT `fee_setup_course_FK_1` FOREIGN KEY (`fee_setup_id`) REFERENCES `fee_setup` (`id`);

--
-- Constraints for table `fee_setup_other`
--
ALTER TABLE `fee_setup_other`
  ADD CONSTRAINT `fee_setup_other_FK` FOREIGN KEY (`fee_setup_id`) REFERENCES `fee_setup` (`id`),
  ADD CONSTRAINT `fee_setup_other_FK_1` FOREIGN KEY (`fee_type_id`) REFERENCES `fee_type` (`id`);

--
-- Constraints for table `grading_scheme_details`
--
ALTER TABLE `grading_scheme_details`
  ADD CONSTRAINT `grading_scheme_details_FK` FOREIGN KEY (`grading_scheme_id`) REFERENCES `grading_scheme` (`id`);

--
-- Constraints for table `grading_scheme_implementation`
--
ALTER TABLE `grading_scheme_implementation`
  ADD CONSTRAINT `grading_scheme_implementation_FK` FOREIGN KEY (`grading_scheme_id`) REFERENCES `grading_scheme` (`id`),
  ADD CONSTRAINT `grading_scheme_implementation_FK_1` FOREIGN KEY (`program_id`) REFERENCES `programs` (`id`);

--
-- Constraints for table `lecturer_locks`
--
ALTER TABLE `lecturer_locks`
  ADD CONSTRAINT `lecturer_locks_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `marking_scheme_implementation`
--
ALTER TABLE `marking_scheme_implementation`
  ADD CONSTRAINT `marking_scheme_implementation_FK` FOREIGN KEY (`marking_scheme_id`) REFERENCES `marking_scheme` (`id`),
  ADD CONSTRAINT `marking_scheme_implementation_FK_1` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`),
  ADD CONSTRAINT `marking_scheme_implementation_FK_2` FOREIGN KEY (`academic_session_id`) REFERENCES `academic_session` (`id`),
  ADD CONSTRAINT `marking_scheme_implementation_FK_3` FOREIGN KEY (`academic_year_id`) REFERENCES `academic_year` (`id`);

--
-- Constraints for table `programs`
--
ALTER TABLE `programs`
  ADD CONSTRAINT `programs_FK` FOREIGN KEY (`faculty_id`) REFERENCES `faculty` (`id`),
  ADD CONSTRAINT `programs_ibfk_1` FOREIGN KEY (`program_structure_id`) REFERENCES `program_structure` (`id`);
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 */;
