gurl_o/gurlushyk28.sql

2044 lines
2.2 MiB
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- MySQL dump 10.13 Distrib 8.0.28, for Linux (x86_64)
--
-- Host: localhost Database: gurlushyk
-- ------------------------------------------------------
-- Server version 8.0.28-0ubuntu0.20.04.3
/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `ahmadfatoni_apigenerator_data`
--
DROP TABLE IF EXISTS `ahmadfatoni_apigenerator_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ahmadfatoni_apigenerator_data` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`endpoint` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`model` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`custom_format` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ahmadfatoni_apigenerator_data`
--
LOCK TABLES `ahmadfatoni_apigenerator_data` WRITE;
/*!40000 ALTER TABLE `ahmadfatoni_apigenerator_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `ahmadfatoni_apigenerator_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `backend_access_log`
--
DROP TABLE IF EXISTS `backend_access_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `backend_access_log` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int unsigned NOT NULL,
`ip_address` varchar(191) 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 AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_access_log`
--
LOCK TABLES `backend_access_log` WRITE;
/*!40000 ALTER TABLE `backend_access_log` DISABLE KEYS */;
INSERT INTO `backend_access_log` VALUES (1,1,'127.0.0.1','2023-06-09 13:27:22','2023-06-09 13:27:22'),(2,1,'127.0.0.1','2023-07-22 11:26:29','2023-07-22 11:26:29'),(3,1,'45.137.66.62','2023-07-23 01:27:57','2023-07-23 01:27:57'),(4,1,'45.137.66.62','2023-07-23 04:39:23','2023-07-23 04:39:23'),(5,1,'45.137.66.62','2023-07-24 11:03:55','2023-07-24 11:03:55');
/*!40000 ALTER TABLE `backend_access_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `backend_user_groups`
--
DROP TABLE IF EXISTS `backend_user_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `backend_user_groups` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`is_new_user_default` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name_unique` (`name`),
KEY `code_index` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_user_groups`
--
LOCK TABLES `backend_user_groups` WRITE;
/*!40000 ALTER TABLE `backend_user_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `backend_user_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `backend_user_preferences`
--
DROP TABLE IF EXISTS `backend_user_preferences`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `backend_user_preferences` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int unsigned NOT NULL,
`namespace` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`group` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`item` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `user_item_index` (`user_id`,`namespace`,`group`,`item`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_user_preferences`
--
LOCK TABLES `backend_user_preferences` WRITE;
/*!40000 ALTER TABLE `backend_user_preferences` DISABLE KEYS */;
/*!40000 ALTER TABLE `backend_user_preferences` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `backend_user_roles`
--
DROP TABLE IF EXISTS `backend_user_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `backend_user_roles` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`is_system` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `role_unique` (`name`),
KEY `role_code_index` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_user_roles`
--
LOCK TABLES `backend_user_roles` WRITE;
/*!40000 ALTER TABLE `backend_user_roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `backend_user_roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `backend_user_throttle`
--
DROP TABLE IF EXISTS `backend_user_throttle`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `backend_user_throttle` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int unsigned DEFAULT NULL,
`ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`attempts` int NOT NULL DEFAULT '0',
`last_attempt_at` timestamp NULL DEFAULT NULL,
`is_suspended` tinyint(1) NOT NULL DEFAULT '0',
`suspended_at` timestamp NULL DEFAULT NULL,
`is_banned` tinyint(1) NOT NULL DEFAULT '0',
`banned_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `backend_user_throttle_user_id_index` (`user_id`),
KEY `backend_user_throttle_ip_address_index` (`ip_address`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_user_throttle`
--
LOCK TABLES `backend_user_throttle` WRITE;
/*!40000 ALTER TABLE `backend_user_throttle` DISABLE KEYS */;
INSERT INTO `backend_user_throttle` VALUES (1,1,'127.0.0.1',0,NULL,0,NULL,0,NULL),(2,1,'45.137.66.62',0,NULL,0,NULL,0,NULL),(3,1,'119.235.118.26',0,NULL,0,NULL,0,NULL);
/*!40000 ALTER TABLE `backend_user_throttle` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `backend_users`
--
DROP TABLE IF EXISTS `backend_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `backend_users` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`login` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`activation_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`persist_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reset_password_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`is_activated` tinyint(1) NOT NULL DEFAULT '0',
`role_id` int unsigned DEFAULT NULL,
`activated_at` timestamp NULL DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`is_superuser` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `login_unique` (`login`),
UNIQUE KEY `email_unique` (`email`),
KEY `act_code_index` (`activation_code`),
KEY `reset_code_index` (`reset_password_code`),
KEY `admin_role_index` (`role_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_users`
--
LOCK TABLES `backend_users` WRITE;
/*!40000 ALTER TABLE `backend_users` DISABLE KEYS */;
INSERT INTO `backend_users` VALUES (1,'Admin','Person','admin','admin@domain.tld','$2y$10$fGfsIo38M1WniqiIBeWtIe5jRnbAlufPqvbHZcIo45PZmvu/FIagS',NULL,'$2y$10$uDaF7JG/8JDjMiXz38YOP.drMHZAdcIKr9KXSYmoJ3y2jQJeOA4gq',NULL,'',1,2,NULL,'2023-07-24 11:03:55','2022-06-24 07:15:58','2023-07-24 11:03:55',NULL,1);
/*!40000 ALTER TABLE `backend_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `backend_users_groups`
--
DROP TABLE IF EXISTS `backend_users_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `backend_users_groups` (
`user_id` int unsigned NOT NULL,
`user_group_id` int unsigned NOT NULL,
PRIMARY KEY (`user_id`,`user_group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_users_groups`
--
LOCK TABLES `backend_users_groups` WRITE;
/*!40000 ALTER TABLE `backend_users_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `backend_users_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache`
--
DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache` (
`key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`expiration` int NOT NULL,
UNIQUE KEY `cache_key_unique` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache`
--
LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cms_theme_data`
--
DROP TABLE IF EXISTS `cms_theme_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_theme_data` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`theme` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `cms_theme_data_theme_index` (`theme`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cms_theme_data`
--
LOCK TABLES `cms_theme_data` WRITE;
/*!40000 ALTER TABLE `cms_theme_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `cms_theme_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cms_theme_logs`
--
DROP TABLE IF EXISTS `cms_theme_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_theme_logs` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`theme` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`template` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`old_template` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`old_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`user_id` int DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `cms_theme_logs_type_index` (`type`),
KEY `cms_theme_logs_theme_index` (`theme`),
KEY `cms_theme_logs_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cms_theme_logs`
--
LOCK TABLES `cms_theme_logs` WRITE;
/*!40000 ALTER TABLE `cms_theme_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `cms_theme_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cms_theme_templates`
--
DROP TABLE IF EXISTS `cms_theme_templates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_theme_templates` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`source` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`file_size` int unsigned NOT NULL,
`updated_at` datetime DEFAULT NULL,
`deleted_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `cms_theme_templates_source_index` (`source`),
KEY `cms_theme_templates_path_index` (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cms_theme_templates`
--
LOCK TABLES `cms_theme_templates` WRITE;
/*!40000 ALTER TABLE `cms_theme_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `cms_theme_templates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `deferred_bindings`
--
DROP TABLE IF EXISTS `deferred_bindings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `deferred_bindings` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`master_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`master_field` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slave_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slave_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`pivot_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`session_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`is_bind` tinyint(1) NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `deferred_bindings_master_type_index` (`master_type`),
KEY `deferred_bindings_master_field_index` (`master_field`),
KEY `deferred_bindings_slave_type_index` (`slave_type`),
KEY `deferred_bindings_slave_id_index` (`slave_id`),
KEY `deferred_bindings_session_key_index` (`session_key`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `deferred_bindings`
--
LOCK TABLES `deferred_bindings` WRITE;
/*!40000 ALTER TABLE `deferred_bindings` DISABLE KEYS */;
/*!40000 ALTER TABLE `deferred_bindings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `failed_jobs`
--
DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`failed_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `failed_jobs`
--
LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `janvince_smallcontactform_messages`
--
DROP TABLE IF EXISTS `janvince_smallcontactform_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `janvince_smallcontactform_messages` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`email` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`form_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`new_message` tinyint(1) NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`remote_ip` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`form_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`form_alias` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`form_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `janvince_smallcontactform_messages_remote_ip_index` (`remote_ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `janvince_smallcontactform_messages`
--
LOCK TABLES `janvince_smallcontactform_messages` WRITE;
/*!40000 ALTER TABLE `janvince_smallcontactform_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `janvince_smallcontactform_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jobs`
--
DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jobs` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`queue` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` text 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_reserved_at_index` (`queue`,`reserved_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jobs`
--
LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `martin_forms_records`
--
DROP TABLE IF EXISTS `martin_forms_records`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `martin_forms_records` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`group` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '(Empty)',
`form_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`ip` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`unread` tinyint(1) NOT NULL DEFAULT '1',
`deleted_at` timestamp NULL 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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `martin_forms_records`
--
LOCK TABLES `martin_forms_records` WRITE;
/*!40000 ALTER TABLE `martin_forms_records` DISABLE KEYS */;
/*!40000 ALTER TABLE `martin_forms_records` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'2013_10_01_000001_Db_Deferred_Bindings',1),(2,'2013_10_01_000002_Db_System_Files',1),(3,'2013_10_01_000003_Db_System_Plugin_Versions',1),(4,'2013_10_01_000004_Db_System_Plugin_History',1),(5,'2013_10_01_000005_Db_System_Settings',1),(6,'2013_10_01_000006_Db_System_Parameters',1),(7,'2013_10_01_000007_Db_System_Add_Disabled_Flag',1),(8,'2013_10_01_000008_Db_System_Mail_Templates',1),(9,'2013_10_01_000009_Db_System_Mail_Layouts',1),(10,'2014_10_01_000010_Db_Jobs',1),(11,'2014_10_01_000011_Db_System_Event_Logs',1),(12,'2014_10_01_000012_Db_System_Request_Logs',1),(13,'2014_10_01_000013_Db_System_Sessions',1),(14,'2015_10_01_000014_Db_System_Mail_Layout_Rename',1),(15,'2015_10_01_000015_Db_System_Add_Frozen_Flag',1),(16,'2015_10_01_000016_Db_Cache',1),(17,'2015_10_01_000017_Db_System_Revisions',1),(18,'2015_10_01_000018_Db_FailedJobs',1),(19,'2016_10_01_000019_Db_System_Plugin_History_Detail_Text',1),(20,'2016_10_01_000020_Db_System_Timestamp_Fix',1),(21,'2017_08_04_121309_Db_Deferred_Bindings_Add_Index_Session',1),(22,'2017_10_01_000021_Db_System_Sessions_Update',1),(23,'2017_10_01_000022_Db_Jobs_FailedJobs_Update',1),(24,'2017_10_01_000023_Db_System_Mail_Partials',1),(25,'2017_10_23_000024_Db_System_Mail_Layouts_Add_Options_Field',1),(26,'2021_10_01_000025_Db_Add_Pivot_Data_To_Deferred_Bindings',1),(27,'2013_10_01_000001_Db_Backend_Users',2),(28,'2013_10_01_000002_Db_Backend_User_Groups',2),(29,'2013_10_01_000003_Db_Backend_Users_Groups',2),(30,'2013_10_01_000004_Db_Backend_User_Throttle',2),(31,'2014_01_04_000005_Db_Backend_User_Preferences',2),(32,'2014_10_01_000006_Db_Backend_Access_Log',2),(33,'2014_10_01_000007_Db_Backend_Add_Description_Field',2),(34,'2015_10_01_000008_Db_Backend_Add_Superuser_Flag',2),(35,'2016_10_01_000009_Db_Backend_Timestamp_Fix',2),(36,'2017_10_01_000010_Db_Backend_User_Roles',2),(37,'2018_12_16_000011_Db_Backend_Add_Deleted_At',2),(38,'2014_10_01_000001_Db_Cms_Theme_Data',3),(39,'2016_10_01_000002_Db_Cms_Timestamp_Fix',3),(40,'2017_10_01_000003_Db_Cms_Theme_Logs',3),(41,'2018_11_01_000001_Db_Cms_Theme_Templates',3);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `offline_sitesearch_query_logs`
--
DROP TABLE IF EXISTS `offline_sitesearch_query_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `offline_sitesearch_query_logs` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`query` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`location` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`domain` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`useragent` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`session_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `offline_sitesearch_query_logs`
--
LOCK TABLES `offline_sitesearch_query_logs` WRITE;
/*!40000 ALTER TABLE `offline_sitesearch_query_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `offline_sitesearch_query_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_blog_categories`
--
DROP TABLE IF EXISTS `rainlab_blog_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_blog_categories` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`parent_id` int unsigned DEFAULT NULL,
`nest_left` int DEFAULT NULL,
`nest_right` int DEFAULT NULL,
`nest_depth` int DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rainlab_blog_categories_slug_index` (`slug`),
KEY `rainlab_blog_categories_parent_id_index` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_blog_categories`
--
LOCK TABLES `rainlab_blog_categories` WRITE;
/*!40000 ALTER TABLE `rainlab_blog_categories` DISABLE KEYS */;
INSERT INTO `rainlab_blog_categories` VALUES (1,'Uncategorized','uncategorized',NULL,NULL,NULL,1,2,0,'2023-06-09 13:40:50','2023-06-09 13:40:50');
/*!40000 ALTER TABLE `rainlab_blog_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_blog_posts`
--
DROP TABLE IF EXISTS `rainlab_blog_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_blog_posts` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int unsigned DEFAULT NULL,
`title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`content_html` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`published_at` timestamp NULL DEFAULT NULL,
`published` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `rainlab_blog_posts_user_id_index` (`user_id`),
KEY `rainlab_blog_posts_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_blog_posts`
--
LOCK TABLES `rainlab_blog_posts` WRITE;
/*!40000 ALTER TABLE `rainlab_blog_posts` DISABLE KEYS */;
INSERT INTO `rainlab_blog_posts` VALUES (1,NULL,'First blog post','first-blog-post','The first ever blog post is here. It might be a good idea to update this post with some more relevant content.','This is your first ever **blog post**! It might be a good idea to update this post with some more relevant content.\n\nYou can edit this content by selecting **Blog** from the administration back-end menu.\n\n*Enjoy the good times!*','<p>This is your first ever <strong>blog post</strong>! It might be a good idea to update this post with some more relevant content.</p>\n<p>You can edit this content by selecting <strong>Blog</strong> from the administration back-end menu.</p>\n<p><em>Enjoy the good times!</em></p>','2023-06-09 13:40:50',1,'2023-06-09 13:40:50','2023-06-09 13:40:50',NULL);
/*!40000 ALTER TABLE `rainlab_blog_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_blog_posts_categories`
--
DROP TABLE IF EXISTS `rainlab_blog_posts_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_blog_posts_categories` (
`post_id` int unsigned NOT NULL,
`category_id` int unsigned NOT NULL,
PRIMARY KEY (`post_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_blog_posts_categories`
--
LOCK TABLES `rainlab_blog_posts_categories` WRITE;
/*!40000 ALTER TABLE `rainlab_blog_posts_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `rainlab_blog_posts_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_location_countries`
--
DROP TABLE IF EXISTS `rainlab_location_countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_location_countries` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`is_enabled` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`is_pinned` tinyint(1) NOT NULL DEFAULT '0',
`calling_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rainlab_location_countries_name_index` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=249 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_location_countries`
--
LOCK TABLES `rainlab_location_countries` WRITE;
/*!40000 ALTER TABLE `rainlab_location_countries` DISABLE KEYS */;
INSERT INTO `rainlab_location_countries` VALUES (1,1,'Australia','AU',1,'61'),(2,1,'Canada','CA',1,'1'),(3,1,'United Kingdom','GB',1,'44'),(4,1,'United States','US',1,'1'),(5,0,'Afghanistan','AF',0,'93'),(6,0,'Aland Islands ','AX',0,NULL),(7,0,'Albania','AL',0,'355'),(8,0,'Algeria','DZ',0,'213'),(9,0,'American Samoa','AS',0,'1684'),(10,0,'Andorra','AD',0,'376'),(11,0,'Angola','AO',0,'244'),(12,0,'Anguilla','AI',0,'1264'),(13,0,'Antarctica','AQ',0,'672'),(14,0,'Antigua and Barbuda','AG',0,'1268'),(15,0,'Argentina','AR',0,'54'),(16,0,'Armenia','AM',0,'374'),(17,0,'Aruba','AW',0,'297'),(18,0,'Austria','AT',0,'43'),(19,0,'Azerbaijan','AZ',0,'994'),(20,0,'Bahamas','BS',0,'1242'),(21,0,'Bahrain','BH',0,'973'),(22,0,'Bangladesh','BD',0,'880'),(23,0,'Barbados','BB',0,'1246'),(24,0,'Belarus','BY',0,'375'),(25,0,'Belgium','BE',0,'32'),(26,0,'Belize','BZ',0,'501'),(27,0,'Benin','BJ',0,'229'),(28,0,'Bermuda','BM',0,'1441'),(29,0,'Bhutan','BT',0,'975'),(30,0,'Bolivia, Plurinational State of','BO',0,'591'),(31,0,'Bonaire, Sint Eustatius and Saba','BQ',0,NULL),(32,0,'Bosnia and Herzegovina','BA',0,'387'),(33,0,'Botswana','BW',0,'267'),(34,0,'Bouvet Island','BV',0,NULL),(35,0,'Brazil','BR',0,'55'),(36,0,'British Indian Ocean Territory','IO',0,NULL),(37,0,'Brunei Darussalam','BN',0,'673'),(38,0,'Bulgaria','BG',0,'359'),(39,0,'Burkina Faso','BF',0,'226'),(40,0,'Burundi','BI',0,'257'),(41,0,'Cambodia','KH',0,'855'),(42,0,'Cameroon','CM',0,'237'),(43,0,'Cape Verde','CV',0,'238'),(44,0,'Cayman Islands','KY',0,'1345'),(45,0,'Central African Republic','CF',0,'236'),(46,0,'Chad','TD',0,'235'),(47,0,'Chile','CL',0,'56'),(48,0,'China','CN',0,'86'),(49,0,'Christmas Island','CX',0,'61'),(50,0,'Cocos (Keeling) Islands','CC',0,'61'),(51,0,'Colombia','CO',0,'57'),(52,0,'Comoros','KM',0,'269'),(53,0,'Congo','CG',0,'242'),(54,0,'Congo, the Democratic Republic of the','CD',0,'243'),(55,0,'Cook Islands','CK',0,'682'),(56,0,'Costa Rica','CR',0,'506'),(57,0,'Cote d\'Ivoire','CI',0,'225'),(58,0,'Croatia','HR',0,'385'),(59,0,'Cuba','CU',0,'53'),(60,0,'Curaçao','CW',0,NULL),(61,0,'Cyprus','CY',0,'357'),(62,0,'Czech Republic','CZ',0,'420'),(63,0,'Denmark','DK',0,'45'),(64,0,'Djibouti','DJ',0,'253'),(65,0,'Dominica','DM',0,'1767'),(66,0,'Dominican Republic','DO',0,'1809'),(67,0,'Ecuador','EC',0,'593'),(68,0,'Egypt','EG',0,'20'),(69,0,'El Salvador','SV',0,'503'),(70,0,'Equatorial Guinea','GQ',0,'240'),(71,0,'Eritrea','ER',0,'291'),(72,0,'Estonia','EE',0,'372'),(73,0,'Ethiopia','ET',0,'251'),(74,0,'Falkland Islands (Malvinas)','FK',0,'500'),(75,0,'Faroe Islands','FO',0,'298'),(76,0,'Finland','FI',0,'358'),(77,0,'Fiji','FJ',0,'679'),(78,1,'France','FR',0,'33'),(79,0,'French Guiana','GF',0,NULL),(80,0,'French Polynesia','PF',0,'689'),(81,0,'French Southern Territories','TF',0,NULL),(82,0,'Gabon','GA',0,'241'),(83,0,'Gambia','GM',0,'220'),(84,0,'Georgia','GE',0,'995'),(85,0,'Germany','DE',0,'49'),(86,0,'Ghana','GH',0,'233'),(87,0,'Gibraltar','GI',0,'350'),(88,0,'Greece','GR',0,'30'),(89,0,'Greenland','GL',0,'299'),(90,0,'Grenada','GD',0,'1473'),(91,0,'Guadeloupe','GP',0,NULL),(92,0,'Guam','GU',0,'1671'),(93,0,'Guatemala','GT',0,'502'),(94,0,'Guernsey','GG',0,NULL),(95,0,'Guinea','GN',0,'224'),(96,0,'Guinea-Bissau','GW',0,'245'),(97,0,'Guyana','GY',0,'592'),(98,0,'Haiti','HT',0,'509'),(99,0,'Heard Island and McDonald Islands','HM',0,NULL),(100,0,'Holy See (Vatican City State)','VA',0,'39'),(101,0,'Honduras','HN',0,'504'),(102,0,'Hong Kong','HK',0,'852'),(103,1,'Hungary','HU',0,'36'),(104,0,'Iceland','IS',0,'354'),(105,1,'India','IN',0,'91'),(106,0,'Indonesia','ID',0,'62'),(107,0,'Iran, Islamic Republic of','IR',0,'98'),(108,0,'Iraq','IQ',0,'964'),(109,1,'Ireland','IE',0,'353'),(110,0,'Isle of Man','IM',0,'44'),(111,0,'Israel','IL',0,'972'),(112,0,'Italy','IT',0,'39'),(113,0,'Jamaica','JM',0,'1876'),(114,0,'Japan','JP',0,'81'),(115,0,'Jersey','JE',0,NULL),(116,0,'Jordan','JO',0,'962'),(117,0,'Kazakhstan','KZ',0,'7'),(118,0,'Kenya','KE',0,'254'),(119,0,'Kiribati','KI',0,'686'),(120,0,'Korea, Democratic People\'s Republic of','KP',0,'850'),(121,0,'Korea, Republic of','KR',0,'82'),(122,0,'Kuwait','KW',0,'965'),(123,0,'Kyrgyzstan','KG',0,'996'),(124,0,'Lao People\'s Democratic Republic','LA',0,'856'),(125,0,'Latvia','LV',0,'371'),(126,0,'Lebanon','LB',0,'961'),(127,0,'Lesotho','LS',0,'266'),(128,0,'Liberia','LR',0,'231'),(129,0,'Libyan Arab Jamahiriya','LY',0,'218'),(130,0,'Liechtenstein','LI',0,'423'),(131,0,'Lithuania','LT',0,'370'),(132,0,'Luxembourg','LU',0,'352'),(133,0,'Macao','MO',0,'853'),(134,0,'Macedonia','MK',0,'389'),(135,0,'Madagascar','MG',0,'261'),(136,0,'Malawi','MW',0,'265'),(137,0,'Malaysia','MY',0,'60'),(138,0,'Maldives','MV',0,'960'),(139,0,'Mali','ML',0,'223'),(140,0,'Malta','MT',0,'356'),(141,0,'Marshall Islands','MH',0,'692'),(142,0,'Martinique','MQ',0,NULL),(143,0,'Mauritania','MR',0,'222'),(144,0,'Mauritius','MU',0,'230'),(145,0,'Mayotte','YT',0,'262'),(146,0,'Mexico','MX',0,'52'),(147,0,'Micronesia, Federated States of','FM',0,'691'),(148,0,'Moldova, Republic of','MD',0,'373'),(149,0,'Monaco','MC',0,'377'),(150,0,'Mongolia','MN',0,'976'),(151,0,'Montenegro','ME',0,'382'),(152,0,'Montserrat','MS',0,'1664'),(153,0,'Morocco','MA',0,'212'),(154,0,'Mozambique','MZ',0,'258'),(155,0,'Myanmar','MM',0,'95'),(156,0,'Namibia','NA',0,'264'),(157,0,'Nauru','NR',0,'674'),(158,0,'Nepal','NP',0,'977'),(159,1,'Netherlands','NL',0,'31'),(160,0,'New Caledonia','NC',0,'687'),(161,1,'New Zealand','NZ',0,'64'),(162,0,'Nicaragua','NI',0,'505'),(163,0,'Niger','NE',0,'227'),(164,0,'Nigeria','NG',0,'234'),(165,0,'Niue','NU',0,'683'),(166,0,'Norfolk Island','NF',0,NULL),(167,0,'Northern Mariana Islands','MP',0,'1670'),(168,0,'Norway','NO',0,'47'),(169,0,'Oman','OM',0,'968'),(170,0,'Pakistan','PK',0,'92'),(171,0,'Palau','PW',0,'680'),(172,0,'Palestine','PS',0,NULL),(173,0,'Panama','PA',0,'507'),(174,0,'Papua New Guinea','PG',0,'675'),(175,0,'Paraguay','PY',0,'595'),(176,0,'Peru','PE',0,'51'),(177,0,'Philippines','PH',0,'63'),(178,0,'Pitcairn','PN',0,'870'),(179,0,'Poland','PL',0,'48'),(180,0,'Portugal','PT',0,'351'),(181,0,'Puerto Rico','PR',0,'1'),(182,0,'Qatar','QA',0,'974'),(183,0,'Reunion','RE',0,NULL),(184,1,'Romania','RO',0,'40'),(185,0,'Russian Federation','RU',0,'7'),(186,0,'Rwanda','RW',0,'250'),(187,0,'Saint Barthélemy','BL',0,'590'),(188,0,'Saint Helena','SH',0,'290'),(189,0,'Saint Kitts and Nevis','KN',0,'1869'),(190,0,'Saint Lucia','LC',0,'1758'),(191,0,'Saint Martin (French part)','MF',0,'1599'),(192,0,'Saint Pierre and Miquelon','PM',0,'508'),(193,0,'Saint Vincent and the Grenadines','VC',0,'1784'),(194,0,'Samoa','WS',0,'685'),(195,0,'San Marino','SM',0,'378'),(196,0,'Sao Tome and Principe','ST',0,'239'),(197,0,'Saudi Arabia','SA',0,'966'),(198,0,'Senegal','SN',0,'221'),(199,0,'Serbia','RS',0,'381'),(200,0,'Seychelles','SC',0,'248'),(201,0,'Sierra Leone','SL',0,'232'),(202,0,'Singapore','SG',0,'65'),(203,0,'Sint Maarten (Dutch part)','SX',0,NULL),(204,0,'Slovakia','SK',0,'421'),(205,0,'Slovenia','SI',0,'386'),(206,0,'Solomon Islands','SB',0,'677'),(207,0,'Somalia','SO',0,'252'),(208,0,'South Africa','ZA',0,'27'),(209,0,'South Georgia and the South Sandwich Islands','GS',0,NULL),(210,1,'Spain','ES',0,'34'),(211,0,'Sri Lanka','LK',0,'94'),(212,0,'Sudan','SD',0,'249'),(213,0,'Suriname','SR',0,'597'),(214,0,'Svalbard and Jan Mayen','SJ',0,NULL),(215,0,'Swaziland','SZ',0,'268'),(216,0,'Sweden','SE',0,'46'),(217,0,'Switzerland','CH',0,'41'),(218,0,'Syrian Arab Republic','SY',0,'963'),(219,0,'Taiwan, Province of China','TW',0,'886'),(220,0,'Tajikistan','TJ',0,'992'),(221,0,'Tanzania, United Republic of','TZ',0,'255'),(222,0,'Thailand','TH',0,'66'),(223,0,'Timor-Leste','TL',0,'670'),(224,0,'Togo','TG',0,'228'),(225,0,'Tokelau','TK',0,'690'),(226,0,'Tonga','TO',0,'676'),(227,0,'Trinidad and Tobago','TT',0,'1868'),(228,0,'Tunisia','TN',0,'216'),(229,0,'Turkey','TR',0,'90'),(230,0,'Turkmenistan','TM',0,'993'),(231,0,'Turks and Caicos Islands','TC',0,'1649'),(232,0,'Tuvalu','TV',0,'688'),(233,0,'Uganda','UG',0,'256'),(234,0,'Ukraine','UA',0,'380'),(235,0,'United Arab Emirates','AE',0,'971'),(236,0,'United States Minor Outlying Islands','UM',0,NULL),(237,0,'Uruguay','UY',0,'598'),(238,0,'Uzbekistan','UZ',0,'998'),(239,0,'Vanuatu','VU',0,'678'),(240,0,'Venezuela, Bolivarian Republic of','VE',0,'58'),(241,0,'Viet Nam','VN',0,'84'),(242,0,'Virgin Islands, British','VG',0,'1284'),(243,0,'Virgin Islands, U.S.','VI',0,'1340'),(244,0,'Wallis and Futuna','WF',0,'681'),(245,0,'Western Sahara','EH',0,NULL),(246,0,'Yemen','YE',0,'967'),(247,0,'Zambia','ZM',0,'260'),(248,0,'Zimbabwe','ZW',0,'263');
/*!40000 ALTER TABLE `rainlab_location_countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_location_states`
--
DROP TABLE IF EXISTS `rainlab_location_states`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_location_states` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`country_id` int unsigned NOT NULL,
`is_enabled` tinyint(1) NOT NULL DEFAULT '1',
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `rainlab_location_states_country_id_index` (`country_id`),
KEY `rainlab_location_states_name_index` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=636 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_location_states`
--
LOCK TABLES `rainlab_location_states` WRITE;
/*!40000 ALTER TABLE `rainlab_location_states` DISABLE KEYS */;
INSERT INTO `rainlab_location_states` VALUES (1,4,1,'Alabama','AL'),(2,4,1,'Alaska','AK'),(3,4,1,'American Samoa','AS'),(4,4,1,'Arizona','AZ'),(5,4,1,'Arkansas','AR'),(6,4,1,'California','CA'),(7,4,1,'Colorado','CO'),(8,4,1,'Connecticut','CT'),(9,4,1,'Delaware','DE'),(10,4,1,'Dist. of Columbia','DC'),(11,4,1,'Florida','FL'),(12,4,1,'Georgia','GA'),(13,4,1,'Guam','GU'),(14,4,1,'Hawaii','HI'),(15,4,1,'Idaho','ID'),(16,4,1,'Illinois','IL'),(17,4,1,'Indiana','IN'),(18,4,1,'Iowa','IA'),(19,4,1,'Kansas','KS'),(20,4,1,'Kentucky','KY'),(21,4,1,'Louisiana','LA'),(22,4,1,'Maine','ME'),(23,4,1,'Maryland','MD'),(24,4,1,'Marshall Islands','MH'),(25,4,1,'Massachusetts','MA'),(26,4,1,'Michigan','MI'),(27,4,1,'Micronesia','FM'),(28,4,1,'Minnesota','MN'),(29,4,1,'Mississippi','MS'),(30,4,1,'Missouri','MO'),(31,4,1,'Montana','MT'),(32,4,1,'Nebraska','NE'),(33,4,1,'Nevada','NV'),(34,4,1,'New Hampshire','NH'),(35,4,1,'New Jersey','NJ'),(36,4,1,'New Mexico','NM'),(37,4,1,'New York','NY'),(38,4,1,'North Carolina','NC'),(39,4,1,'North Dakota','ND'),(40,4,1,'Northern Marianas','MP'),(41,4,1,'Ohio','OH'),(42,4,1,'Oklahoma','OK'),(43,4,1,'Oregon','OR'),(44,4,1,'Palau','PW'),(45,4,1,'Pennsylvania','PA'),(46,4,1,'Puerto Rico','PR'),(47,4,1,'Rhode Island','RI'),(48,4,1,'South Carolina','SC'),(49,4,1,'South Dakota','SD'),(50,4,1,'Tennessee','TN'),(51,4,1,'Texas','TX'),(52,4,1,'Utah','UT'),(53,4,1,'Vermont','VT'),(54,4,1,'Virginia','VA'),(55,4,1,'Virgin Islands','VI'),(56,4,1,'Washington','WA'),(57,4,1,'West Virginia','WV'),(58,4,1,'Wisconsin','WI'),(59,4,1,'Wyoming','WY'),(60,35,1,'Acre','AC'),(61,35,1,'Alagoas','AL'),(62,35,1,'Amapá','AP'),(63,35,1,'Amazonas','AM'),(64,35,1,'Bahia','BA'),(65,35,1,'Ceará','CE'),(66,35,1,'Distrito Federal','DF'),(67,35,1,'Espírito Santo','ES'),(68,35,1,'Goiás','GO'),(69,35,1,'Maranhão','MA'),(70,35,1,'Mato Grosso','MT'),(71,35,1,'Mato Grosso do Sul','MS'),(72,35,1,'Minas Gerais','MG'),(73,35,1,'Pará','PA'),(74,35,1,'Paraíba','PB'),(75,35,1,'Paraná','PR'),(76,35,1,'Pernambuco','PE'),(77,35,1,'Piauí','PI'),(78,35,1,'Rio de Janeiro','RJ'),(79,35,1,'Rio Grande do Norte','RN'),(80,35,1,'Rio Grande do Sul','RS'),(81,35,1,'Rondônia','RO'),(82,35,1,'Roraima','RR'),(83,35,1,'Santa Catarina','SC'),(84,35,1,'São Paulo','SP'),(85,35,1,'Sergipe','SE'),(86,35,1,'Tocantins','TO'),(87,2,1,'Alberta','AB'),(88,2,1,'British Columbia','BC'),(89,2,1,'Manitoba','MB'),(90,2,1,'New Brunswick','NB'),(91,2,1,'Newfoundland and Labrador','NL'),(92,2,1,'Northwest Territories','NT'),(93,2,1,'Nova Scotia','NS'),(94,2,1,'Nunavut','NU'),(95,2,1,'Ontario','ON'),(96,2,1,'Prince Edward Island','PE'),(97,2,1,'Quebec','QC'),(98,2,1,'Saskatchewan','SK'),(99,2,1,'Yukon','YT'),(100,217,1,'Aargau','AG'),(101,217,1,'Appenzell Innerrhoden','AI'),(102,217,1,'Appenzell Ausserrhoden','AR'),(103,217,1,'Bern','BE'),(104,217,1,'Basel-Landschaft','BL'),(105,217,1,'Basel-Stadt','BS'),(106,217,1,'Fribourg','FR'),(107,217,1,'Genève','GE'),(108,217,1,'Glarus','GL'),(109,217,1,'Graubünden','GR'),(110,217,1,'Jura','JU'),(111,217,1,'Luzern','LU'),(112,217,1,'Neuchâtel','NE'),(113,217,1,'Nidwalden','NW'),(114,217,1,'Obwalden','OW'),(115,217,1,'St. Gallen','SG'),(116,217,1,'Solothurn','SO'),(117,217,1,'Schwyz','SZ'),(118,217,1,'Thurgau','TG'),(119,217,1,'Ticino','TI'),(120,217,1,'Uri','UR'),(121,217,1,'Vaud','VD'),(122,217,1,'Valais','VS'),(123,217,1,'Zug','ZG'),(124,217,1,'Zürich','ZH'),(125,1,1,'New South Wales','NSW'),(126,1,1,'Queensland','QLD'),(127,1,1,'South Australia','SA'),(128,1,1,'Tasmania','TAS'),(129,1,1,'Victoria','VIC'),(130,1,1,'Western Australia','WA'),(131,1,1,'Northern Territory','NT'),(132,1,1,'Australian Capital Territory','ACT'),(133,85,1,'Baden-Württemberg','BW'),(134,85,1,'Bayern','BY'),(135,85,1,'Berlin','BE'),(136,85,1,'Brandenburg','BB'),(137,85,1,'Bremen','HB'),(138,85,1,'Hamburg','HH'),(139,85,1,'Hessen','HE'),(140,85,1,'Mecklenburg-Vorpommern','MV'),(141,85,1,'Niedersachsen','NI'),(142,85,1,'Nordrhein-Westfalen','NW'),(143,85,1,'Rheinland-Pfalz','RP'),(144,85,1,'Saarland','SL'),(145,85,1,'Sachsen','SN'),(146,85,1,'Sachsen-Anhalt','ST'),(147,85,1,'Schleswig-Holstein','SH'),(148,85,1,'Thüringen','TH'),(149,72,1,'Harju','HA'),(150,72,1,'Hiiu','HI'),(151,72,1,'Ida-Viru','IV'),(152,72,1,'Jõgeva','JR'),(153,72,1,'Järva','JN'),(154,72,1,'Lääne','LN'),(155,72,1,'Lääne-Viru','LV'),(156,72,1,'Põlva','PL'),(157,72,1,'Pärnu','PR'),(158,72,1,'Rapla','RA'),(159,72,1,'Saare','SA'),(160,72,1,'Tartu','TA'),(161,72,1,'Valga','VG'),(162,72,1,'Viljandi','VD'),(163,72,1,'Võru','VR'),(164,109,1,'Dublin','D'),(165,109,1,'Wicklow','WW'),(166,109,1,'Wexford','WX'),(167,109,1,'Carlow','CW'),(168,109,1,'Kildare','KE'),(169,109,1,'Meath','MH'),(170,109,1,'Louth','LH'),(171,109,1,'Monaghan','MN'),(172,109,1,'Cavan','CN'),(173,109,1,'Longford','LD'),(174,109,1,'Westmeath','WH'),(175,109,1,'Offaly','OY'),(176,109,1,'Laois','LS'),(177,109,1,'Kilkenny','KK'),(178,109,1,'Waterford','WD'),(179,109,1,'Cork','C'),(180,109,1,'Kerry','KY'),(181,109,1,'Limerick','LK'),(182,109,1,'North Tipperary','TN'),(183,109,1,'South Tipperary','TS'),(184,109,1,'Clare','CE'),(185,109,1,'Galway','G'),(186,109,1,'Mayo','MO'),(187,109,1,'Roscommon','RN'),(188,109,1,'Sligo','SO'),(189,109,1,'Leitrim','LM'),(190,109,1,'Donegal','DL'),(191,159,1,'Drenthe','DR'),(192,159,1,'Flevoland','FL'),(193,159,1,'Friesland','FR'),(194,159,1,'Gelderland','GE'),(195,159,1,'Groningen','GR'),(196,159,1,'Limburg','LI'),(197,159,1,'Noord-Brabant','NB'),(198,159,1,'Noord-Holland','NH'),(199,159,1,'Overijssel','OV'),(200,159,1,'Utrecht','UT'),(201,159,1,'Zeeland','ZE'),(202,159,1,'Zuid-Holland','ZH'),(203,3,1,'Aberdeenshire','ABE'),(204,3,1,'Anglesey','ALY'),(205,3,1,'Angus','ANG'),(206,3,1,'Argyll','ARG'),(207,3,1,'Ayrshire','AYR'),(208,3,1,'Banffshire','BAN'),(209,3,1,'Bedfordshire','BED'),(210,3,1,'Berkshire','BER'),(211,3,1,'Berwickshire','BWS'),(212,3,1,'Brecknockshire','BRE'),(213,3,1,'Buckinghamshire','BUC'),(214,3,1,'Bute','BUT'),(215,3,1,'Caernarfonshire','CAE'),(216,3,1,'Caithness','CAI'),(217,3,1,'Cambridgeshire','CAM'),(218,3,1,'Cardiganshire','CAR'),(219,3,1,'Carmarthenshire','CMS'),(220,3,1,'Cheshire','CHE'),(221,3,1,'Clackmannanshire','CLA'),(222,3,1,'Cleveland','CLE'),(223,3,1,'Cornwall','COR'),(224,3,1,'Cromartyshire','CRO'),(225,3,1,'Cumberland','CBR'),(226,3,1,'Cumbria','CUM'),(227,3,1,'Denbighshire','DEN'),(228,3,1,'Derbyshire','DER'),(229,3,1,'Devon','DEV'),(230,3,1,'Dorset','DOR'),(231,3,1,'Dumbartonshire','DBS'),(232,3,1,'Dumfriesshire','DUM'),(233,3,1,'Durham','DUR'),(234,3,1,'East Lothian','ELO'),(235,3,1,'Essex','ESS'),(236,3,1,'Flintshire','FLI'),(237,3,1,'Fife','FIF'),(238,3,1,'Glamorgan','GLA'),(239,3,1,'Gloucestershire','GLO'),(240,3,1,'Hampshire','HAM'),(241,3,1,'Herefordshire','HER'),(242,3,1,'Hertfordshire','HTF'),(243,3,1,'Huntingdonshire','HUN'),(244,3,1,'Inverness','INV'),(245,3,1,'Kent','KEN'),(246,3,1,'Kincardineshire','KCD'),(247,3,1,'Kinross-shire','KIN'),(248,3,1,'Kirkcudbrightshire','KIR'),(249,3,1,'Lanarkshire','LKS'),(250,3,1,'Lancashire','LAN'),(251,3,1,'Leicestershire','LEI'),(252,3,1,'Lincolnshire','LIN'),(253,3,1,'London','LON'),(254,3,1,'Manchester','MAN'),(255,3,1,'Merionethshire','MER'),(256,3,1,'Merseyside','MSY'),(257,3,1,'Middlesex','MDX'),(258,3,1,'Midlands','MID'),(259,3,1,'Midlothian','MLT'),(260,3,1,'Monmouthshire','MON'),(261,3,1,'Montgomeryshire','MGY'),(262,3,1,'Moray','MOR'),(263,3,1,'Nairnshire','NAI'),(264,3,1,'Norfolk','NOR'),(265,3,1,'Northamptonshire','NMP'),(266,3,1,'Northumberland','NUM'),(267,3,1,'Nottinghamshire','NOT'),(268,3,1,'Orkney','ORK'),(269,3,1,'Oxfordshire','OXF'),(270,3,1,'Peebleshire','PEE'),(271,3,1,'Pembrokeshire','PEM'),(272,3,1,'Perthshire','PER'),(273,3,1,'Radnorshire','RAD'),(274,3,1,'Renfrewshire','REN'),(275,3,1,'Ross & Cromarty','ROS'),(276,3,1,'Roxburghshire','ROX'),(277,3,1,'Rutland','RUT'),(278,3,1,'Selkirkshire','SEL'),(279,3,1,'Shetland','SHE'),(280,3,1,'Shropshire','SHR'),(281,3,1,'Somerset','SOM'),(282,3,1,'Staffordshire','STA'),(283,3,1,'Stirlingshire','STI'),(284,3,1,'Suffolk','SUF'),(285,3,1,'Surrey','SUR'),(286,3,1,'Sussex','SUS'),(287,3,1,'Sutherland','SUT'),(288,3,1,'Tyne & Wear','TYN'),(289,3,1,'Warwickshire','WAR'),(290,3,1,'West Lothian','WLO'),(291,3,1,'Westmorland','WES'),(292,3,1,'Wigtownshire','WIG'),(293,3,1,'Wiltshire','WIL'),(294,3,1,'Worcestershire','WOR'),(295,3,1,'Yorkshire','YOR'),(296,184,1,'Alba','AB'),(297,184,1,'Arad','AR'),(298,184,1,'Arges','AG'),(299,184,1,'Bacău','BC'),(300,184,1,'Bihor','BH'),(301,184,1,'Bistrita - Nasaud Bistrita','BN'),(302,184,1,'Botosani','BT'),(303,184,1,'Brasov','BV'),(304,184,1,'Braila','BR'),(305,184,1,'Bucuresti','B'),(306,184,1,'Buzau','BZ'),(307,184,1,'Caras - Severin','CS'),(308,184,1,'Calarasi','CL'),(309,184,1,'Cluj','CJ'),(310,184,1,'Constanta','CT'),(311,184,1,'Covasna Sfantu Gheorghe','CV'),(312,184,1,'Dambovita','DB'),(313,184,1,'Dolj','DJ'),(314,184,1,'Galati','GL'),(315,184,1,'Giurgiu','GR'),(316,184,1,'Gorj','GJ'),(317,184,1,'Harghita','HR'),(318,184,1,'Hunedoara','HD'),(319,184,1,'Ialomita','IL'),(320,184,1,'Iasi','IS'),(321,184,1,'Ilfov','IF'),(322,184,1,'Maramures','MM'),(323,184,1,'Mehedinti','MH'),(324,184,1,'Mures','MS'),(325,184,1,'Neamt','NT'),(326,184,1,'Olt','OT'),(327,184,1,'Prahova Ploiesti','PH'),(328,184,1,'Satu Mare','SM'),(329,184,1,'Salaj','SJ'),(330,184,1,'Sibiu','SB'),(331,184,1,'Suceava','SV'),(332,184,1,'Teleorman','TR'),(333,184,1,'Timis','TM'),(334,184,1,'Tulcea','TL'),(335,184,1,'Vaslui','VS'),(336,184,1,'Valcea','VL'),(337,184,1,'Vrancea','VN'),(338,103,1,'Budapest','BUD'),(339,103,1,'Baranya','BAR'),(340,103,1,'Bács-Kiskun','BKM'),(341,103,1,'Békés','BEK'),(342,103,1,'Borsod-Abaúj-Zemplén','BAZ'),(343,103,1,'Csongrád','CSO'),(344,103,1,'Fejér','FEJ'),(345,103,1,'Győr-Moson-Sopron','GMS'),(346,103,1,'Hajdú-Bihar','HBM'),(347,103,1,'Heves','HEV'),(348,103,1,'Jász-Nagykun-Szolnok','JNS'),(349,103,1,'Komárom-Esztergom','KEM'),(350,103,1,'Nógrád','NOG'),(351,103,1,'Pest','PES'),(352,103,1,'Somogy','SOM'),(353,103,1,'Szabolcs-Szatmár-Bereg','SSB'),(354,103,1,'Tolna','TOL'),(355,103,1,'Vas','VAS'),(356,103,1,'Veszprém','VES'),(357,103,1,'Zala','ZAL'),(358,105,1,'Andhra Pradesh','AP'),(359,105,1,'Arunachal Pradesh','AR'),(360,105,1,'Assam','AS'),(361,105,1,'Bihar','BR'),(362,105,1,'Chhattisgarh','CT'),(363,105,1,'Goa','GA'),(364,105,1,'Gujarat','GJ'),(365,105,1,'Haryana','HR'),(366,105,1,'Himachal Pradesh','HP'),(367,105,1,'Jammu and Kashmir','JK'),(368,105,1,'Jharkhand','JH'),(369,105,1,'Karnataka','KA'),(370,105,1,'Kerala','KL'),(371,105,1,'Madhya Pradesh','MP'),(372,105,1,'Maharashtra','MH'),(373,105,1,'Manipur','MN'),(374,105,1,'Meghalaya','ML'),(375,105,1,'Mizoram','MZ'),(376,105,1,'Nagaland','NL'),(377,105,1,'Odisha','OR'),(378,105,1,'Punjab','PB'),(379,105,1,'Rajasthan','RJ'),(380,105,1,'Sikkim','SK'),(381,105,1,'Tamil Nadu','TN'),(382,105,1,'Telangana','TG'),(383,105,1,'Tripura','TR'),(384,105,1,'Uttarakhand','UT'),(385,105,1,'Uttar Pradesh','UP'),(386,105,1,'West Bengal','WB'),(387,105,1,'Andaman and Nicobar Islands','AN'),(388,105,1,'Chandigarh','CH'),(389,105,1,'Dadra and Nagar Haveli','DN'),(390,105,1,'Daman and Diu','DD'),(391,105,1,'Delhi','DL'),(392,105,1,'Lakshadweep','LD'),(393,105,1,'Puducherry','PY'),(394,78,1,'Auvergne-Rhône-Alpes','ARA'),(395,78,1,'Bourgogne-Franche-Comté','BFC'),(396,78,1,'Bretagne','BZH'),(397,78,1,'CentreVal-de-Loire','CVL'),(398,78,1,'Corse','COR'),(399,78,1,'Guadeloupe','GP'),(400,78,1,'Guyane','GF'),(401,78,1,'Grand-Est','GE'),(402,78,1,'Hauts-de-France','HF'),(403,78,1,'Île-de-France','IDF'),(404,78,1,'Martinique','MQ'),(405,78,1,'Mayotte','YT'),(406,78,1,'Normandie','NOR'),(407,78,1,'Pays-de-la-Loire','PL'),(408,78,1,'Nouvelle-Aquitaine','NA'),(409,78,1,'Occitanie','OCC'),(410,78,1,'Provence-Alpes-Côte-d\'Azur','PACA'),(411,78,1,'Réunion','RE'),(412,161,1,'Northland','NTL'),(413,161,1,'Auckland','AUK'),(414,161,1,'Waikato','WKO'),(415,161,1,'Bay of Plenty','BOP'),(416,161,1,'Gisborne','GIS'),(417,161,1,'Hawke\'s Bay','HKB'),(418,161,1,'Taranaki','TKI'),(419,161,1,'Manawatu-Wanganui','MWT'),(420,161,1,'Wellington','WGN'),(421,161,1,'Tasman','TAS'),(422,161,1,'Nelson','NSN'),(423,161,1,'Marlborough','MBH'),(424,161,1,'West Coast','WTC'),(425,161,1,'Canterbury','CAN'),(426,161,1,'Otago Otago','OTA'),(427,161,1,'Southland','STL'),(428,210,1,'A Coruña (gl) [La Coruña]','ES-C'),(429,210,1,'Araba (eu)','ES-VI'),(430,210,1,'Albacete','ES-AB'),(431,210,1,'Alacant (ca)','ES-A'),(432,210,1,'Almería','ES-AL'),(433,210,1,'Asturias','ES-O'),(434,210,1,'Ávila','ES-AV'),(435,210,1,'Badajoz','ES-BA'),(436,210,1,'Balears (ca) [Baleares]','ES-PM'),(437,210,1,'Barcelona [Barcelona]','ES-B'),(438,210,1,'Burgos','ES-BU'),(439,210,1,'Cáceres','ES-CC'),(440,210,1,'Cádiz','ES-CA'),(441,210,1,'Cantabria','ES-S'),(442,210,1,'Castelló (ca)','ES-CS'),(443,210,1,'Ciudad Real','ES-CR'),(444,210,1,'Córdoba','ES-CO'),(445,210,1,'Cuenca','ES-CU'),(446,210,1,'Girona (ca) [Gerona]','ES-GI'),(447,210,1,'Granada','ES-GR'),(448,210,1,'Guadalajara','ES-GU'),(449,210,1,'Gipuzkoa (eu)','ES-SS'),(450,210,1,'Huelva','ES-H'),(451,210,1,'Huesca','ES-HU'),(452,210,1,'Jaén','ES-J'),(453,210,1,'La Rioja','ES-LO'),(454,210,1,'Las Palmas','ES-GC'),(455,210,1,'León','ES-LE'),(456,210,1,'Lleida (ca) [Lérida]','ES-L'),(457,210,1,'Lugo (gl) [Lugo]','ES-LU'),(458,210,1,'Madrid','ES-M'),(459,210,1,'Málaga','ES-MA'),(460,210,1,'Murcia','ES-MU'),(461,210,1,'Nafarroa (eu)','ES-NA'),(462,210,1,'Ourense (gl) [Orense]','ES-OR'),(463,210,1,'Palencia','ES-P'),(464,210,1,'Pontevedra (gl) [Pontevedra]','ES-PO'),(465,210,1,'Salamanca','ES-SA'),(466,210,1,'Santa Cruz de Tenerife','ES-TF'),(467,210,1,'Segovia','ES-SG'),(468,210,1,'Sevilla','ES-SE'),(469,210,1,'Soria','ES-SO'),(470,210,1,'Tarragona (ca) [Tarragona]','ES-T'),(471,210,1,'Teruel','ES-TE'),(472,210,1,'Toledo','ES-TO'),(473,210,1,'València (ca)','ES-V'),(474,210,1,'Valladolid','ES-VA'),(475,210,1,'Bizkaia (eu)','ES-BI'),(476,210,1,'Zamora','ES-ZA'),(477,210,1,'Zaragoza','ES-Z'),(478,146,1,'Aguascalientes','MX-AGU'),(479,146,1,'Baja California','MX-BCN'),(480,146,1,'Baja California Sur','MX-BCS'),(481,146,1,'Campeche','MX-CAM'),(482,146,1,'Chiapas','MX-CHP'),(483,146,1,'Chihuahua','MX-CHH'),(484,146,1,'Coahuila','MX-COA'),(485,146,1,'Colima','MX-COL'),(486,146,1,'Ciudad de México','MX-CMX'),(487,146,1,'Durango','MX-DUR'),(488,146,1,'Guanajuato','MX-GUA'),(489,146,1,'Guerrero','MX-GRO'),(490,146,1,'Hidalgo','MX-HID'),(491,146,1,'Jalisco','MX-JAL'),(492,146,1,'Estado de México','MX-MEX'),(493,146,1,'Michoacán','MX-MIC'),(494,146,1,'Morelos','MX-MOR'),(495,146,1,'Nayarit','MX-NAY'),(496,146,1,'Nuevo León','MX-NLE'),(497,146,1,'Oaxaca','MX-OAX'),(498,146,1,'Puebla','MX-PUE'),(499,146,1,'Querétaro','MX-QUE'),(500,146,1,'Quintana Roo','MX-ROO'),(501,146,1,'San Luis Potosí','MX-SLP'),(502,146,1,'Sinaloa','MX-SIN'),(503,146,1,'Sonora','MX-SON'),(504,146,1,'Tabasco','MX-TAB'),(505,146,1,'Tamaulipas','MX-TAM'),(506,146,1,'Tlaxcala','MX-TLA'),(507,146,1,'Veracruz','MX-VER'),(508,146,1,'Yucatán','MX-YUC'),(509,146,1,'Zacatecas','MX-ZAC'),(510,15,1,'Buenos Aires','BA'),(511,15,1,'Catamarca','CA'),(512,15,1,'Chaco','CH'),(513,15,1,'Chubut','CT'),(514,15,1,'Córdoba','CB'),(515,15,1,'Corrientes','CR'),(516,15,1,'Entre Ríos','ER'),(517,15,1,'Formosa','FO'),(518,15,1,'Jujuy','JY'),(519,15,1,'La Pampa','LP'),(520,15,1,'La Rioja','LR'),(521,15,1,'Mendoza','MZ'),(522,15,1,'Misiones','MI'),(523,15,1,'Neuquén','NQ'),(524,15,1,'Río Negro','RN'),(525,15,1,'Salta','SA'),(526,15,1,'San Juan','SJ'),(527,15,1,'San Luis','SL'),(528,15,1,'Santa Cruz','SC'),(529,15,1,'Santa Fe','SF'),(530,15,1,'Santiago del Estero','SE'),(531,15,1,'Tierra del Fuego','TF'),(532,15,1,'Tucumán','TU'),(533,112,1,'Agrigento','AG'),(534,112,1,'Alessandria','AL'),(535,112,1,'Ancona','AN'),(536,112,1,'Aosta','AO'),(537,112,1,'Arezzo','AR'),(538,112,1,'Ascoli Piceno','AP'),(539,112,1,'Asti','AT'),(540,112,1,'Avellino','AV'),(541,112,1,'Bari','BA'),(542,112,1,'Belluno','BL'),(543,112,1,'Benevento','BN'),(544,112,1,'Bergamo','BG'),(545,112,1,'Biella','BI'),(546,112,1,'Bologna','BO'),(547,112,1,'Bolzano','BZ'),(548,112,1,'Brescia','BS'),(549,112,1,'Brindisi','BR'),(550,112,1,'Cagliari','CA'),(551,112,1,'Caltanissetta','CL'),(552,112,1,'Campobasso','CB'),(553,112,1,'Caserta','CE'),(554,112,1,'Catania','CT'),(555,112,1,'Catanzaro','CZ'),(556,112,1,'Chieti','CH'),(557,112,1,'Como','CO'),(558,112,1,'Cosenza','CS'),(559,112,1,'Cremona','CR'),(560,112,1,'Crotone','KR'),(561,112,1,'Cuneo','CN'),(562,112,1,'Enna','EN'),(563,112,1,'Ferrara','FE'),(564,112,1,'Firenze','FI'),(565,112,1,'Foggia','FG'),(566,112,1,'Forli\'-Cesena','FO'),(567,112,1,'Frosinone','FR'),(568,112,1,'Genova','GE'),(569,112,1,'Gorizia','GO'),(570,112,1,'Grosseto','GR'),(571,112,1,'Imperia','IM'),(572,112,1,'Isernia','IS'),(573,112,1,'La Spezia','SP'),(574,112,1,'L\'Aquila','AQ'),(575,112,1,'Latina','LT'),(576,112,1,'Lecce','LE'),(577,112,1,'Lecco','LC'),(578,112,1,'Livorno','LI'),(579,112,1,'Lodi','LO'),(580,112,1,'Lucca','LU'),(581,112,1,'Macerata','MC'),(582,112,1,'Mantova','MN'),(583,112,1,'Massa-Carrara','MS'),(584,112,1,'Matera','MT'),(585,112,1,'Messina','ME'),(586,112,1,'Milano','MI'),(587,112,1,'Modena','MO'),(588,112,1,'Napoli','NA'),(589,112,1,'Novara','NO'),(590,112,1,'Nuoro','NU'),(591,112,1,'Oristano','OR'),(592,112,1,'Padova','PD'),(593,112,1,'Palermo','PA'),(594,112,1,'Parma','PR'),(595,112,1,'Pavia','PV'),(596,112,1,'Perugia','PG'),(597,112,1,'Pesaro e Urbino','PS'),(598,112,1,'Pescara','PE'),(599,112,1,'Piacenza','PC'),(600,112,1,'Pisa','PI'),(601,112,1,'Pistoia','PT'),(602,112,1,'Pordenone','PN'),(603,112,1,'Potenza','PZ'),(604,112,1,'Prato','PO'),(605,112,1,'Ragusa','RG'),(606,112,1,'Ravenna','RA'),(607,112,1,'Reggio di Calabria','RC'),(608,112,1,'Reggio nell\'Emilia','RE'),(609,112,1,'Rieti','RI'),(610,112,1,'Rimini','RN'),(611,112,1,'Roma','RM'),(612,112,1,'Rovigo','RO'),(613,112,1,'Salerno','SA'),(614,112,1,'Sassari','SS'),(615,112,1,'Savona','SV'),(616,112,1,'Siena','SI'),(617,112,1,'Siracusa','SR'),(618,112,1,'Sondrio','SO'),(619,112,1,'Taranto','TA'),(620,112,1,'Teramo','TE'),(621,112,1,'Terni','TR'),(622,112,1,'Torino','TO'),(623,112,1,'Trapani','TP'),(624,112,1,'Trento','TN'),(625,112,1,'Treviso','TV'),(626,112,1,'Trieste','TS'),(627,112,1,'Udine','UD'),(628,112,1,'Varese','VA'),(629,112,1,'Venezia','VE'),(630,112,1,'Verbano-Cusio-Ossola','VB'),(631,112,1,'Vercelli','VC'),(632,112,1,'Verona','VR'),(633,112,1,'Vibo Valentia','VV'),(634,112,1,'Vicenza','VI'),(635,112,1,'Viterbo','VT');
/*!40000 ALTER TABLE `rainlab_location_states` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_notify_notification_rules`
--
DROP TABLE IF EXISTS `rainlab_notify_notification_rules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_notify_notification_rules` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`class_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`config_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`condition_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`is_enabled` tinyint(1) NOT NULL DEFAULT '0',
`is_custom` tinyint(1) NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rainlab_notify_notification_rules_code_index` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_notify_notification_rules`
--
LOCK TABLES `rainlab_notify_notification_rules` WRITE;
/*!40000 ALTER TABLE `rainlab_notify_notification_rules` DISABLE KEYS */;
/*!40000 ALTER TABLE `rainlab_notify_notification_rules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_notify_notifications`
--
DROP TABLE IF EXISTS `rainlab_notify_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_notify_notifications` (
`id` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`event_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`notifiable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`notifiable_id` bigint unsigned NOT NULL,
`icon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`read_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rainlab_notify_notifications_notifiable_type_notifiable_id_index` (`notifiable_type`,`notifiable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_notify_notifications`
--
LOCK TABLES `rainlab_notify_notifications` WRITE;
/*!40000 ALTER TABLE `rainlab_notify_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `rainlab_notify_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_notify_rule_actions`
--
DROP TABLE IF EXISTS `rainlab_notify_rule_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_notify_rule_actions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`class_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`config_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`rule_host_id` int unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rainlab_notify_rule_actions_rule_host_id_index` (`rule_host_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_notify_rule_actions`
--
LOCK TABLES `rainlab_notify_rule_actions` WRITE;
/*!40000 ALTER TABLE `rainlab_notify_rule_actions` DISABLE KEYS */;
/*!40000 ALTER TABLE `rainlab_notify_rule_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_notify_rule_conditions`
--
DROP TABLE IF EXISTS `rainlab_notify_rule_conditions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_notify_rule_conditions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`class_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`config_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`condition_control_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`rule_host_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`rule_host_id` int unsigned DEFAULT NULL,
`rule_parent_id` int unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `host_rule_id_type` (`rule_host_id`,`rule_host_type`),
KEY `rainlab_notify_rule_conditions_rule_host_id_index` (`rule_host_id`),
KEY `rainlab_notify_rule_conditions_rule_parent_id_index` (`rule_parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_notify_rule_conditions`
--
LOCK TABLES `rainlab_notify_rule_conditions` WRITE;
/*!40000 ALTER TABLE `rainlab_notify_rule_conditions` DISABLE KEYS */;
/*!40000 ALTER TABLE `rainlab_notify_rule_conditions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_translate_attributes`
--
DROP TABLE IF EXISTS `rainlab_translate_attributes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_translate_attributes` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`model_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`model_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`attribute_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `rainlab_translate_attributes_locale_index` (`locale`),
KEY `rainlab_translate_attributes_model_id_index` (`model_id`),
KEY `rainlab_translate_attributes_model_type_index` (`model_type`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_translate_attributes`
--
LOCK TABLES `rainlab_translate_attributes` WRITE;
/*!40000 ALTER TABLE `rainlab_translate_attributes` DISABLE KEYS */;
INSERT INTO `rainlab_translate_attributes` VALUES (1,'en','2','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(2,'ru','2','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(3,'en','1','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(4,'ru','1','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(5,'en','3','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(6,'ru','3','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(7,'en','2','TPS\\Birzha\\Models\\Category','{\"name\":\"\",\"slug\":\"\"}'),(8,'ru','2','TPS\\Birzha\\Models\\Category','{\"name\":\"\",\"slug\":\"\"}');
/*!40000 ALTER TABLE `rainlab_translate_attributes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_translate_indexes`
--
DROP TABLE IF EXISTS `rainlab_translate_indexes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_translate_indexes` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`model_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`model_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`item` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `rainlab_translate_indexes_locale_index` (`locale`),
KEY `rainlab_translate_indexes_model_id_index` (`model_id`),
KEY `rainlab_translate_indexes_model_type_index` (`model_type`),
KEY `rainlab_translate_indexes_item_index` (`item`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_translate_indexes`
--
LOCK TABLES `rainlab_translate_indexes` WRITE;
/*!40000 ALTER TABLE `rainlab_translate_indexes` DISABLE KEYS */;
/*!40000 ALTER TABLE `rainlab_translate_indexes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_translate_locales`
--
DROP TABLE IF EXISTS `rainlab_translate_locales`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_translate_locales` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
`is_enabled` tinyint(1) NOT NULL DEFAULT '0',
`sort_order` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `rainlab_translate_locales_code_index` (`code`),
KEY `rainlab_translate_locales_name_index` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_translate_locales`
--
LOCK TABLES `rainlab_translate_locales` WRITE;
/*!40000 ALTER TABLE `rainlab_translate_locales` DISABLE KEYS */;
INSERT INTO `rainlab_translate_locales` VALUES (1,'en','English',0,1,1),(2,'tm','Turkmen',1,1,2),(3,'ru','Russian',0,1,3);
/*!40000 ALTER TABLE `rainlab_translate_locales` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_translate_messages`
--
DROP TABLE IF EXISTS `rainlab_translate_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_translate_messages` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`message_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`found` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `rainlab_translate_messages_code_index` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_translate_messages`
--
LOCK TABLES `rainlab_translate_messages` WRITE;
/*!40000 ALTER TABLE `rainlab_translate_messages` DISABLE KEYS */;
INSERT INTO `rainlab_translate_messages` VALUES (1,'site.main.page','{\"x\":\"site.main_page\"}',1);
/*!40000 ALTER TABLE `rainlab_translate_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rainlab_user_mail_blockers`
--
DROP TABLE IF EXISTS `rainlab_user_mail_blockers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rainlab_user_mail_blockers` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`template` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rainlab_user_mail_blockers_email_index` (`email`),
KEY `rainlab_user_mail_blockers_template_index` (`template`),
KEY `rainlab_user_mail_blockers_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rainlab_user_mail_blockers`
--
LOCK TABLES `rainlab_user_mail_blockers` WRITE;
/*!40000 ALTER TABLE `rainlab_user_mail_blockers` DISABLE KEYS */;
/*!40000 ALTER TABLE `rainlab_user_mail_blockers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sessions`
--
DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sessions` (
`id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`last_activity` int DEFAULT NULL,
`user_id` int unsigned DEFAULT NULL,
`ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
UNIQUE KEY `sessions_id_unique` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sessions`
--
LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_event_logs`
--
DROP TABLE IF EXISTS `system_event_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_event_logs` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`level` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`details` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `system_event_logs_level_index` (`level`)
) ENGINE=InnoDB AUTO_INCREMENT=1414 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_event_logs`
--
LOCK TABLES `system_event_logs` WRITE;
/*!40000 ALTER TABLE `system_event_logs` DISABLE KEYS */;
INSERT INTO `system_event_logs` VALUES (1,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:21:51','2023-06-09 13:21:51'),(2,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:22:11','2023-06-09 18:22:11'),(3,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:22:51','2023-06-09 13:22:51'),(4,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:23:11','2023-06-09 18:23:11'),(5,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:23:51','2023-06-09 13:23:51'),(6,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:24:11','2023-06-09 18:24:11'),(7,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:24:51','2023-06-09 13:24:51'),(8,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:25:11','2023-06-09 18:25:11'),(9,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:25:51','2023-06-09 13:25:51'),(10,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:26:11','2023-06-09 18:26:11'),(11,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:26:51','2023-06-09 13:26:51'),(12,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:27:11','2023-06-09 18:27:11'),(13,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:27:51','2023-06-09 13:27:51'),(14,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:28:11','2023-06-09 18:28:11'),(15,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:28:51','2023-06-09 13:28:51'),(16,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:29:11','2023-06-09 18:29:11'),(17,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:29:51','2023-06-09 13:29:51'),(18,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:30:11','2023-06-09 18:30:11'),(19,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:30:51','2023-06-09 13:30:51'),(20,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:31:11','2023-06-09 18:31:11'),(21,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:31:51','2023-06-09 13:31:51'),(22,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:32:11','2023-06-09 18:32:11'),(23,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:32:51','2023-06-09 13:32:51'),(24,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:33:11','2023-06-09 18:33:11'),(25,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:33:52','2023-06-09 13:33:52'),(26,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:34:11','2023-06-09 18:34:11'),(27,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:34:51','2023-06-09 13:34:51'),(28,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:35:11','2023-06-09 18:35:11'),(29,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:35:51','2023-06-09 13:35:51'),(30,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:36:11','2023-06-09 18:36:11'),(31,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:36:52','2023-06-09 13:36:52'),(32,'error','Symfony\\Component\\Console\\Exception\\CommandNotFoundException: Command \"october:migrate\" is not defined.\n\nDid you mean one of these?\n october:down\n october:env\n october:fresh\n october:install\n october:mirror\n october:passwd\n october:up\n october:update\n october:util\n october:version in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php:676\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(237): Symfony\\Component\\Console\\Application->find(\'october:migrate\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#5 {main}','[]','2023-06-09 13:36:54','2023-06-09 13:36:54'),(33,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:37:11','2023-06-09 18:37:11'),(34,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:37:52','2023-06-09 13:37:52'),(35,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:38:11','2023-06-09 18:38:11'),(36,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:38:51','2023-06-09 13:38:51'),(37,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:39:11','2023-06-09 18:39:11'),(38,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:39:51','2023-06-09 13:39:51'),(39,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:40:11','2023-06-09 18:40:11'),(40,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:40:52','2023-06-09 13:40:52'),(41,'error','Doctrine\\DBAL\\Schema\\SchemaException: There is no column with name \'chat_id\' on table \'tps_birzha_messages\'. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/SchemaException.php:86\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Table.php(711): Doctrine\\DBAL\\Schema\\SchemaException::columnDoesNotExist(\'chat_id\', \'tps_birzha_mess...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(882): Doctrine\\DBAL\\Schema\\Table->getColumn(\'chat_id\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/RenameColumn.php(26): Illuminate\\Database\\Connection->getDoctrineColumn(\'tps_birzha_mess...\', \'chat_id\')\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/Grammar.php(40): Illuminate\\Database\\Schema\\Grammars\\RenameColumn::compile(Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar), Object(October\\Rain\\Database\\Schema\\Blueprint), Object(Illuminate\\Support\\Fluent), Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(123): Illuminate\\Database\\Schema\\Grammars\\Grammar->compileRenameColumn(Object(October\\Rain\\Database\\Schema\\Blueprint), Object(Illuminate\\Support\\Fluent), Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(96): Illuminate\\Database\\Schema\\Blueprint->toSql(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_mess...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_messages_2.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaMessages2->up()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.52\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.52\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#31 {main}','[]','2023-06-09 13:40:59','2023-06-09 13:40:59'),(42,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:41:11','2023-06-09 18:41:11'),(43,'error','PDOException: SQLSTATE[42000]: Syntax error or access violation: 1068 Multiple primary key defined in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(117): PDOStatement->execute(NULL)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_categories.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(61): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProductCategories->down()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(431): October\\Rain\\Database\\Updater->packDown(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(194): System\\Classes\\VersionManager->removeDatabaseScript(\'TPS.Birzha\', \'1.0.30\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(579): System\\Classes\\VersionManager->removePlugin(Object(TPS\\Birzha\\Plugin), NULL, true)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(336): System\\Classes\\UpdateManager->rollbackPlugin(\'TPS.Birzha\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberDown.php(40): System\\Classes\\UpdateManager->uninstall()\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberDown->handle()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberDown), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42000]: Syntax error or access violation: 1068 Multiple primary key defined in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(119): Doctrine\\DBAL\\Driver\\PDO\\Exception::new(Object(PDOException))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_categories.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(61): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProductCategories->down()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(431): October\\Rain\\Database\\Updater->packDown(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(194): System\\Classes\\VersionManager->removeDatabaseScript(\'TPS.Birzha\', \'1.0.30\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(579): System\\Classes\\VersionManager->removePlugin(Object(TPS\\Birzha\\Plugin), NULL, true)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(336): System\\Classes\\UpdateManager->rollbackPlugin(\'TPS.Birzha\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberDown.php(40): System\\Classes\\UpdateManager->uninstall()\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberDown->handle()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberDown), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42000]: Syntax error or access violation: 1068 Multiple primary key defined (SQL: alter table `tps_birzha_product_categories` add `id` int unsigned not null auto_increment primary key) in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php:669\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_categories.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(61): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProductCategories->down()\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(431): October\\Rain\\Database\\Updater->packDown(\'/Users/tmstore/...\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(194): System\\Classes\\VersionManager->removeDatabaseScript(\'TPS.Birzha\', \'1.0.30\', \'builder_table_u...\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(579): System\\Classes\\VersionManager->removePlugin(Object(TPS\\Birzha\\Plugin), NULL, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(336): System\\Classes\\UpdateManager->rollbackPlugin(\'TPS.Birzha\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberDown.php(40): System\\Classes\\UpdateManager->uninstall()\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberDown->handle()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberDown), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 {main}','[]','2023-06-09 13:41:46','2023-06-09 13:41:46'),(44,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:41:51','2023-06-09 13:41:51'),(45,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:42:11','2023-06-09 18:42:11'),(46,'error','PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product\' doesn\'t exist in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(117): PDOStatement->execute(NULL)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_7.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProduct7->up()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.31\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.31\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#31 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product\' doesn\'t exist in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(119): Doctrine\\DBAL\\Driver\\PDO\\Exception::new(Object(PDOException))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_7.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProduct7->up()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.31\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.31\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#31 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product\' doesn\'t exist (SQL: alter table `tps_birzha_product` add `sort_roder` int not null default \'0\') in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php:669\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_7.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProduct7->up()\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.31\', \'builder_table_u...\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.31\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 {main}','[]','2023-06-09 13:42:23','2023-06-09 13:42:23'),(47,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:42:52','2023-06-09 13:42:52'),(48,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:43:11','2023-06-09 18:43:11'),(49,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:43:52','2023-06-09 13:43:52'),(50,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:44:11','2023-06-09 18:44:11'),(51,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:44:52','2023-06-09 13:44:52'),(52,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:45:11','2023-06-09 18:45:11'),(53,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:45:52','2023-06-09 13:45:52'),(54,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:46:11','2023-06-09 18:46:11'),(55,'error','PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product\' doesn\'t exist in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(117): PDOStatement->execute(NULL)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_7.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProduct7->up()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.31\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.31\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#31 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product\' doesn\'t exist in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(119): Doctrine\\DBAL\\Driver\\PDO\\Exception::new(Object(PDOException))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_7.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProduct7->up()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.31\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.31\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#31 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product\' doesn\'t exist (SQL: alter table `tps_birzha_product` add `sort_roder` int not null default \'0\') in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php:669\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_7.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProduct7->up()\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.31\', \'builder_table_u...\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.31\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 {main}','[]','2023-06-09 13:46:15','2023-06-09 13:46:15'),(56,'error','PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product\' doesn\'t exist in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(117): PDOStatement->execute(NULL)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_7.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProduct7->up()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.31\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.31\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#31 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product\' doesn\'t exist in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(119): Doctrine\\DBAL\\Driver\\PDO\\Exception::new(Object(PDOException))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_7.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProduct7->up()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.31\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.31\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#31 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product\' doesn\'t exist (SQL: alter table `tps_birzha_product` add `sort_roder` int not null default \'0\') in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php:669\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_7.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProduct7->up()\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.31\', \'builder_table_u...\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.31\', Array)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 {main}','[]','2023-06-09 13:46:40','2023-06-09 13:46:40'),(57,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:46:51','2023-06-09 13:46:51'),(58,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:47:11','2023-06-09 18:47:11'),(59,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:47:52','2023-06-09 13:47:52'),(60,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:48:11','2023-06-09 18:48:11'),(61,'error','PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product_categories\' doesn\'t exist in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(117): PDOStatement->execute(NULL)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_categories.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(61): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProductCategories->down()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(431): October\\Rain\\Database\\Updater->packDown(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(194): System\\Classes\\VersionManager->removeDatabaseScript(\'TPS.Birzha\', \'1.0.30\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(579): System\\Classes\\VersionManager->removePlugin(Object(TPS\\Birzha\\Plugin), NULL, true)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(850): System\\Classes\\UpdateManager->rollbackPlugin(\'TPS.Birzha\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/controllers/updates.php(873): System\\Classes\\PluginManager->deletePlugin(\'TPS.Birzha\')\n#16 [internal function]: System\\Controllers\\Updates->onBulkAction()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(628): call_user_func_array(Array, Array)\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onBulkAction\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'manage\', Array)\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'system/updates/...\')\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(45): Backend\\Classes\\BackendController->callAction(\'run\', Array)\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(219): Illuminate\\Routing\\ControllerDispatcher->dispatch(Object(Illuminate\\Routing\\Route), Object(Backend\\Classes\\BackendController), \'run\')\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(176): Illuminate\\Routing\\Route->runController()\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(681): Illuminate\\Routing\\Route->run()\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(68): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(153): Backend\\Classes\\BackendController->Backend\\Classes\\{closure}(Object(Illuminate\\Http\\Request), Object(Closure))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#32 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(56): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#40 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#41 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(683): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(658): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))\n#43 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(624): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))\n#44 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Router/CoreRouter.php(20): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request))\n#45 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): October\\Rain\\Router\\CoreRouter->dispatch(Object(Illuminate\\Http\\Request))\n#46 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))\n#47 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#48 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Http/Middleware/CheckForMaintenanceMode.php(25): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#49 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#50 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Http/Middleware/TrustHosts.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#51 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Http\\Middleware\\TrustHosts->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#52 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#53 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(145): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#54 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request))\n#55 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#56 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#57 {main}\n\nNext Doctrine\\DBAL\\Driver\\PDO\\Exception: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product_categories\' doesn\'t exist in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(119): Doctrine\\DBAL\\Driver\\PDO\\Exception::new(Object(PDOException))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(463): Doctrine\\DBAL\\Driver\\PDOStatement->execute()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(662): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}(\'alter table `tp...\', Array)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_categories.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(61): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProductCategories->down()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(431): October\\Rain\\Database\\Updater->packDown(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(194): System\\Classes\\VersionManager->removeDatabaseScript(\'TPS.Birzha\', \'1.0.30\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(579): System\\Classes\\VersionManager->removePlugin(Object(TPS\\Birzha\\Plugin), NULL, true)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(850): System\\Classes\\UpdateManager->rollbackPlugin(\'TPS.Birzha\')\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/controllers/updates.php(873): System\\Classes\\PluginManager->deletePlugin(\'TPS.Birzha\')\n#16 [internal function]: System\\Controllers\\Updates->onBulkAction()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(628): call_user_func_array(Array, Array)\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onBulkAction\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'manage\', Array)\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'system/updates/...\')\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(45): Backend\\Classes\\BackendController->callAction(\'run\', Array)\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(219): Illuminate\\Routing\\ControllerDispatcher->dispatch(Object(Illuminate\\Routing\\Route), Object(Backend\\Classes\\BackendController), \'run\')\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(176): Illuminate\\Routing\\Route->runController()\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(681): Illuminate\\Routing\\Route->run()\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(68): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(153): Backend\\Classes\\BackendController->Backend\\Classes\\{closure}(Object(Illuminate\\Http\\Request), Object(Closure))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#32 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(56): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#40 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#41 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(683): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(658): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))\n#43 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(624): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))\n#44 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Router/CoreRouter.php(20): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request))\n#45 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): October\\Rain\\Router\\CoreRouter->dispatch(Object(Illuminate\\Http\\Request))\n#46 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))\n#47 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#48 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Http/Middleware/CheckForMaintenanceMode.php(25): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#49 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#50 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Http/Middleware/TrustHosts.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#51 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Http\\Middleware\\TrustHosts->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#52 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#53 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(145): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#54 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request))\n#55 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#56 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#57 {main}\n\nNext Illuminate\\Database\\QueryException: SQLSTATE[42S02]: Base table or view not found: 1146 Table \'gurlushyk.tps_birzha_product_categories\' doesn\'t exist (SQL: alter table `tps_birzha_product_categories` add `id` int unsigned not null auto_increment primary key) in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php:669\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(629): Illuminate\\Database\\Connection->runQueryCallback(\'alter table `tp...\', Array, Object(Closure))\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(464): Illuminate\\Database\\Connection->run(\'alter table `tp...\', Array, Object(Closure))\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(97): Illuminate\\Database\\Connection->statement(\'alter table `tp...\')\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_prod...\', Object(Closure))\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_product_categories.php(23): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(61): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaProductCategories->down()\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(431): October\\Rain\\Database\\Updater->packDown(\'/Users/tmstore/...\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(194): System\\Classes\\VersionManager->removeDatabaseScript(\'TPS.Birzha\', \'1.0.30\', \'builder_table_u...\')\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(579): System\\Classes\\VersionManager->removePlugin(Object(TPS\\Birzha\\Plugin), NULL, true)\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/PluginManager.php(850): System\\Classes\\UpdateManager->rollbackPlugin(\'TPS.Birzha\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/controllers/updates.php(873): System\\Classes\\PluginManager->deletePlugin(\'TPS.Birzha\')\n#13 [internal function]: System\\Controllers\\Updates->onBulkAction()\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(628): call_user_func_array(Array, Array)\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(478): Backend\\Classes\\Controller->runAjaxHandler(\'onBulkAction\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/Controller.php(277): Backend\\Classes\\Controller->execAjaxHandlers()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(173): Backend\\Classes\\Controller->run(\'manage\', Array)\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Backend\\Classes\\BackendController->run(\'system/updates/...\')\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(119): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(45): Backend\\Classes\\BackendController->callAction(\'run\', Array)\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(219): Illuminate\\Routing\\ControllerDispatcher->dispatch(Object(Illuminate\\Routing\\Route), Object(Backend\\Classes\\BackendController), \'run\')\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(176): Illuminate\\Routing\\Route->runController()\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(681): Illuminate\\Routing\\Route->run()\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/backend/Classes/BackendController.php(68): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(153): Backend\\Classes\\BackendController->Backend\\Classes\\{closure}(Object(Illuminate\\Http\\Request), Object(Closure))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(56): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#32 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(683): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(658): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))\n#40 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(624): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))\n#41 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Router/CoreRouter.php(20): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request))\n#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): October\\Rain\\Router\\CoreRouter->dispatch(Object(Illuminate\\Http\\Request))\n#43 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))\n#44 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#45 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Http/Middleware/CheckForMaintenanceMode.php(25): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#46 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#47 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Http/Middleware/TrustHosts.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#48 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Http\\Middleware\\TrustHosts->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#49 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#50 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(145): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#51 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request))\n#52 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#53 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#54 {main}','[]','2023-06-09 13:48:22','2023-06-09 13:48:22'),(62,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:48:52','2023-06-09 13:48:52'),(63,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:49:11','2023-06-09 18:49:11'),(64,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:49:51','2023-06-09 13:49:51'),(65,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:50:11','2023-06-09 18:50:11'),(66,'error','Doctrine\\DBAL\\Schema\\SchemaException: There is no column with name \'chat_id\' on table \'tps_birzha_messages\'. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/SchemaException.php:86\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Table.php(711): Doctrine\\DBAL\\Schema\\SchemaException::columnDoesNotExist(\'chat_id\', \'tps_birzha_mess...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(882): Doctrine\\DBAL\\Schema\\Table->getColumn(\'chat_id\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/RenameColumn.php(26): Illuminate\\Database\\Connection->getDoctrineColumn(\'tps_birzha_mess...\', \'chat_id\')\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/Grammar.php(40): Illuminate\\Database\\Schema\\Grammars\\RenameColumn::compile(Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar), Object(October\\Rain\\Database\\Schema\\Blueprint), Object(Illuminate\\Support\\Fluent), Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(123): Illuminate\\Database\\Schema\\Grammars\\Grammar->compileRenameColumn(Object(October\\Rain\\Database\\Schema\\Blueprint), Object(Illuminate\\Support\\Fluent), Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(96): Illuminate\\Database\\Schema\\Blueprint->toSql(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_mess...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_messages_2.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaMessages2->up()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.52\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.52\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#31 {main}','[]','2023-06-09 13:50:34','2023-06-09 13:50:34'),(67,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:50:52','2023-06-09 13:50:52'),(68,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:51:11','2023-06-09 18:51:11'),(69,'error','Doctrine\\DBAL\\Schema\\SchemaException: There is no column with name \'chat_id\' on table \'tps_birzha_messages\'. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/SchemaException.php:86\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Table.php(711): Doctrine\\DBAL\\Schema\\SchemaException::columnDoesNotExist(\'chat_id\', \'tps_birzha_mess...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Connection.php(882): Doctrine\\DBAL\\Schema\\Table->getColumn(\'chat_id\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/RenameColumn.php(26): Illuminate\\Database\\Connection->getDoctrineColumn(\'tps_birzha_mess...\', \'chat_id\')\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/Grammar.php(40): Illuminate\\Database\\Schema\\Grammars\\RenameColumn::compile(Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar), Object(October\\Rain\\Database\\Schema\\Blueprint), Object(Illuminate\\Support\\Fluent), Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(123): Illuminate\\Database\\Schema\\Grammars\\Grammar->compileRenameColumn(Object(October\\Rain\\Database\\Schema\\Blueprint), Object(Illuminate\\Support\\Fluent), Object(October\\Rain\\Database\\Connections\\MySqlConnection))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php(96): Illuminate\\Database\\Schema\\Blueprint->toSql(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(290): Illuminate\\Database\\Schema\\Blueprint->build(Object(October\\Rain\\Database\\Connections\\MySqlConnection), Object(Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar))\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php(151): Illuminate\\Database\\Schema\\Builder->build(Object(October\\Rain\\Database\\Schema\\Blueprint))\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(261): Illuminate\\Database\\Schema\\Builder->table(\'tps_birzha_mess...\', Object(Closure))\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_tps_birzha_messages_2.php(13): Illuminate\\Support\\Facades\\Facade::__callStatic(\'table\', Array)\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Database/Updater.php(34): TPS\\Birzha\\Updates\\BuilderTableUpdateTpsBirzhaMessages2->up()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(410): October\\Rain\\Database\\Updater->setUp(\'/Users/tmstore/...\')\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(135): System\\Classes\\VersionManager->applyDatabaseScript(\'TPS.Birzha\', \'1.0.52\', \'builder_table_u...\')\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/VersionManager.php(93): System\\Classes\\VersionManager->applyPluginUpdate(\'TPS.Birzha\', \'1.0.52\', Array)\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(551): System\\Classes\\VersionManager->updatePlugin(Object(TPS\\Birzha\\Plugin))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Classes/UpdateManager.php(155): System\\Classes\\UpdateManager->updatePlugin(\'TPS.Birzha\')\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/system/Console/OctoberUp.php(35): System\\Classes\\UpdateManager->update()\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): System\\Console\\OctoberUp->handle()\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(37): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(October\\Rain\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\\Container\\BoundMethod::call(Object(October\\Rain\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\\Container\\Container->call(Array)\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Command/Command.php(255): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(1009): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(273): Symfony\\Component\\Console\\Application->doRunCommand(Object(System\\Console\\OctoberUp), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/symfony/console/Application.php(149): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/artisan(35): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#31 {main}','[]','2023-06-09 13:51:21','2023-06-09 13:51:21'),(70,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:51:52','2023-06-09 13:51:52'),(71,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:52:11','2023-06-09 18:52:11'),(72,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:52:52','2023-06-09 13:52:52'),(73,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:53:11','2023-06-09 18:53:11'),(74,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:53:52','2023-06-09 13:53:52'),(75,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:54:11','2023-06-09 18:54:11'),(76,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:54:52','2023-06-09 13:54:52'),(77,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:55:11','2023-06-09 18:55:11'),(78,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:55:52','2023-06-09 13:55:52'),(79,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:56:11','2023-06-09 18:56:11'),(80,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:56:52','2023-06-09 13:56:52'),(81,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:57:11','2023-06-09 18:57:11'),(82,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:57:52','2023-06-09 13:57:52'),(83,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:58:11','2023-06-09 18:58:11'),(84,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:58:52','2023-06-09 13:58:52'),(85,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:59:11','2023-06-09 18:59:11'),(86,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:59:52','2023-06-09 13:59:52'),(87,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:00:11','2023-06-09 19:00:11'),(88,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:00:52','2023-06-09 14:00:52'),(89,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:01:12','2023-06-09 19:01:12'),(90,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:01:52','2023-06-09 14:01:52'),(91,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:02:11','2023-06-09 19:02:11'),(92,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:02:52','2023-06-09 14:02:52'),(93,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:03:11','2023-06-09 19:03:11'),(94,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:03:52','2023-06-09 14:03:52'),(95,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:04:11','2023-06-09 19:04:11'),(96,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:04:52','2023-06-09 14:04:52'),(97,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:05:11','2023-06-09 19:05:11'),(98,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:05:53','2023-06-09 14:05:53'),(99,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:06:11','2023-06-09 19:06:11'),(100,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:06:52','2023-06-09 14:06:52'),(101,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:07:11','2023-06-09 19:07:11'),(102,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:07:52','2023-06-09 14:07:52'),(103,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:08:11','2023-06-09 19:08:11'),(104,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:08:52','2023-06-09 14:08:52'),(105,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:09:11','2023-06-09 19:09:11'),(106,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:09:52','2023-06-09 14:09:52'),(107,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:10:11','2023-06-09 19:10:11'),(108,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:10:52','2023-06-09 14:10:52'),(109,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:11:12','2023-06-09 19:11:12'),(110,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:11:52','2023-06-09 14:11:52'),(111,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:12:11','2023-06-09 19:12:11'),(112,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:12:52','2023-06-09 14:12:52'),(113,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:13:11','2023-06-09 19:13:11'),(114,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:13:52','2023-06-09 14:13:52'),(115,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:14:11','2023-06-09 19:14:11'),(116,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:14:52','2023-06-09 14:14:52'),(117,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:15:11','2023-06-09 19:15:11'),(118,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:15:52','2023-06-09 14:15:52'),(119,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:16:11','2023-06-09 19:16:11'),(120,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:16:52','2023-06-09 14:16:52'),(121,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:17:11','2023-06-09 19:17:11'),(122,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:17:52','2023-06-09 14:17:52'),(123,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:18:11','2023-06-09 19:18:11'),(124,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:18:52','2023-06-09 14:18:52'),(125,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:19:11','2023-06-09 19:19:11'),(126,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:19:52','2023-06-09 14:19:52'),(127,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:20:11','2023-06-09 19:20:11'),(128,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:20:52','2023-06-09 14:20:52'),(129,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:21:11','2023-06-09 19:21:11'),(130,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:21:52','2023-06-09 14:21:52'),(131,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:22:11','2023-06-09 19:22:11'),(132,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:22:52','2023-06-09 14:22:52'),(133,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:23:12','2023-06-09 19:23:12'),(134,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:23:52','2023-06-09 14:23:52'),(135,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:24:11','2023-06-09 19:24:11'),(136,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:24:52','2023-06-09 14:24:52'),(137,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:25:11','2023-06-09 19:25:11'),(138,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:25:52','2023-06-09 14:25:52'),(139,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:26:11','2023-06-09 19:26:11'),(140,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:26:52','2023-06-09 14:26:52'),(141,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:27:11','2023-06-09 19:27:11'),(142,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:27:52','2023-06-09 14:27:52'),(143,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:28:11','2023-06-09 19:28:11'),(144,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:28:52','2023-06-09 14:28:52'),(145,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:29:11','2023-06-09 19:29:11'),(146,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:29:52','2023-06-09 14:29:52'),(147,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:30:11','2023-06-09 19:30:11'),(148,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:30:52','2023-06-09 14:30:52'),(149,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:31:11','2023-06-09 19:31:11'),(150,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:31:52','2023-06-09 14:31:52'),(151,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:32:11','2023-06-09 19:32:11'),(152,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:32:52','2023-06-09 14:32:52'),(153,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:33:12','2023-06-09 19:33:12'),(154,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:33:52','2023-06-09 14:33:52'),(155,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:34:11','2023-06-09 19:34:11'),(156,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:34:52','2023-06-09 14:34:52'),(157,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:35:11','2023-06-09 19:35:11'),(158,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:35:52','2023-06-09 14:35:52'),(159,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:36:11','2023-06-09 19:36:11'),(160,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:36:52','2023-06-09 14:36:52'),(161,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:37:11','2023-06-09 19:37:11'),(162,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:37:52','2023-06-09 14:37:52'),(163,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:38:11','2023-06-09 19:38:11'),(164,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:38:52','2023-06-09 14:38:52'),(165,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:39:11','2023-06-09 19:39:11'),(166,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:39:52','2023-06-09 14:39:52'),(167,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:40:11','2023-06-09 19:40:11'),(168,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:40:52','2023-06-09 14:40:52'),(169,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:41:11','2023-06-09 19:41:11'),(170,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:41:52','2023-06-09 14:41:52'),(171,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:42:11','2023-06-09 19:42:11'),(172,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:42:52','2023-06-09 14:42:52'),(173,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:43:11','2023-06-09 19:43:11'),(174,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:43:52','2023-06-09 14:43:52'),(175,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:44:11','2023-06-09 19:44:11'),(176,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:44:52','2023-06-09 14:44:52'),(177,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:45:12','2023-06-09 19:45:12'),(178,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:45:52','2023-06-09 14:45:52'),(179,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:46:11','2023-06-09 19:46:11'),(180,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:46:52','2023-06-09 14:46:52'),(181,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:47:12','2023-06-09 19:47:12'),(182,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:47:52','2023-06-09 14:47:52'),(183,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:48:11','2023-06-09 19:48:11'),(184,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:48:52','2023-06-09 14:48:52'),(185,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:49:11','2023-06-09 19:49:11'),(186,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:49:52','2023-06-09 14:49:52'),(187,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:50:11','2023-06-09 19:50:11'),(188,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:50:52','2023-06-09 14:50:52'),(189,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:51:12','2023-06-09 19:51:12'),(190,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:51:52','2023-06-09 14:51:52'),(191,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:52:11','2023-06-09 19:52:11'),(192,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:52:52','2023-06-09 14:52:52'),(193,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:53:12','2023-06-09 19:53:12'),(194,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:53:52','2023-06-09 14:53:52'),(195,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:54:11','2023-06-09 19:54:11'),(196,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:54:52','2023-06-09 14:54:52'),(197,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:55:11','2023-06-09 19:55:11'),(198,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:55:52','2023-06-09 14:55:52'),(199,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:56:11','2023-06-09 19:56:11'),(200,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:56:52','2023-06-09 14:56:52'),(201,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:57:11','2023-06-09 19:57:11'),(202,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:57:52','2023-06-09 14:57:52'),(203,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:58:11','2023-06-09 19:58:11'),(204,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:58:52','2023-06-09 14:58:52'),(205,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 19:59:11','2023-06-09 19:59:11'),(206,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 14:59:52','2023-06-09 14:59:52'),(207,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:00:11','2023-06-09 20:00:11'),(208,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:00:52','2023-06-09 15:00:52'),(209,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:01:11','2023-06-09 20:01:11'),(210,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:01:52','2023-06-09 15:01:52'),(211,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:02:11','2023-06-09 20:02:11'),(212,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:02:52','2023-06-09 15:02:52'),(213,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:03:11','2023-06-09 20:03:11'),(214,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:03:52','2023-06-09 15:03:52'),(215,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:04:11','2023-06-09 20:04:11'),(216,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:04:52','2023-06-09 15:04:52'),(217,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:05:11','2023-06-09 20:05:11'),(218,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:05:52','2023-06-09 15:05:52'),(219,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:06:11','2023-06-09 20:06:11'),(220,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:06:52','2023-06-09 15:06:52'),(221,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:07:12','2023-06-09 20:07:12'),(222,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:07:52','2023-06-09 15:07:52'),(223,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:08:11','2023-06-09 20:08:11'),(224,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:08:52','2023-06-09 15:08:52'),(225,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:09:11','2023-06-09 20:09:11'),(226,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:09:52','2023-06-09 15:09:52'),(227,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:10:11','2023-06-09 20:10:11'),(228,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:10:52','2023-06-09 15:10:52'),(229,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:11:11','2023-06-09 20:11:11'),(230,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:11:52','2023-06-09 15:11:52'),(231,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:12:11','2023-06-09 20:12:11'),(232,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:12:52','2023-06-09 15:12:52'),(233,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:13:11','2023-06-09 20:13:11'),(234,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:13:52','2023-06-09 15:13:52'),(235,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:14:11','2023-06-09 20:14:11'),(236,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:14:52','2023-06-09 15:14:52'),(237,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Cannot declare class TPS\\Birzha\\Updates\\BuilderTableUpdateUsers, because the name is already in use in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/updates/builder_table_update_users_table_02_02_2022_16_55.php:6\nStack trace:\n#0 {main}','[]','2023-06-09 15:15:07','2023-06-09 15:15:07'),(238,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:15:11','2023-06-09 20:15:11'),(239,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:15:52','2023-06-09 15:15:52'),(240,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:16:11','2023-06-09 20:16:11'),(241,'error','ErrorException: Trying to get property \'slide_items\' of non-object in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/components/Sliders.php:49\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/components/Sliders.php(49): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Trying to get p...\', \'/Users/tmstore/...\', 49, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/CmsCompoundObject.php(178): TPS\\Birzha\\Components\\Sliders->onRun()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(501): Cms\\Classes\\CmsCompoundObject->runComponents()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(394): Cms\\Classes\\Controller->execPageCycle()\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(225): Cms\\Classes\\Controller->runPage(Object(Cms\\Classes\\Page))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/CmsController.php(50): Cms\\Classes\\Controller->run(\'/\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Cms\\Classes\\CmsController->run(\'/\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(45): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(219): Illuminate\\Routing\\ControllerDispatcher->dispatch(Object(Illuminate\\Routing\\Route), Object(Cms\\Classes\\CmsController), \'run\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(176): Illuminate\\Routing\\Route->runController()\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(681): Illuminate\\Routing\\Route->run()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/translate/classes/LocaleMiddleware.php(29): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): RainLab\\Translate\\Classes\\LocaleMiddleware->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(56): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(683): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(658): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(624): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Router/CoreRouter.php(20): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): October\\Rain\\Router\\CoreRouter->dispatch(Object(Illuminate\\Http\\Request))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#32 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Http/Middleware/CheckForMaintenanceMode.php(25): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Http/Middleware/TrustHosts.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Http\\Middleware\\TrustHosts->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/offline/cors/classes/HandleCors.php(36): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): OFFLINE\\CORS\\Classes\\HandleCors->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(145): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#40 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request))\n#41 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#43 {main}','[]','2023-06-09 15:16:23','2023-06-09 15:16:23'),(242,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:16:52','2023-06-09 15:16:52'),(243,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:17:11','2023-06-09 20:17:11'),(244,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:17:52','2023-06-09 15:17:52'),(245,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:18:11','2023-06-09 20:18:11'),(246,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:18:52','2023-06-09 15:18:52'),(247,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:19:11','2023-06-09 20:19:11'),(248,'error','ErrorException: Trying to get property \'slide_items\' of non-object in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/components/Sliders.php:49\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/components/Sliders.php(49): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Trying to get p...\', \'/Users/tmstore/...\', 49, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/CmsCompoundObject.php(178): TPS\\Birzha\\Components\\Sliders->onRun()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(501): Cms\\Classes\\CmsCompoundObject->runComponents()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(394): Cms\\Classes\\Controller->execPageCycle()\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(225): Cms\\Classes\\Controller->runPage(Object(Cms\\Classes\\Page))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/CmsController.php(50): Cms\\Classes\\Controller->run(\'/\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Cms\\Classes\\CmsController->run(\'/\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(45): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(219): Illuminate\\Routing\\ControllerDispatcher->dispatch(Object(Illuminate\\Routing\\Route), Object(Cms\\Classes\\CmsController), \'run\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(176): Illuminate\\Routing\\Route->runController()\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(681): Illuminate\\Routing\\Route->run()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/translate/classes/LocaleMiddleware.php(29): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): RainLab\\Translate\\Classes\\LocaleMiddleware->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(56): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(683): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(658): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(624): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Router/CoreRouter.php(20): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): October\\Rain\\Router\\CoreRouter->dispatch(Object(Illuminate\\Http\\Request))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#32 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Http/Middleware/CheckForMaintenanceMode.php(25): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Http/Middleware/TrustHosts.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Http\\Middleware\\TrustHosts->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/offline/cors/classes/HandleCors.php(36): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): OFFLINE\\CORS\\Classes\\HandleCors->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(145): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#40 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request))\n#41 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#43 {main}','[]','2023-06-09 15:19:44','2023-06-09 15:19:44'),(249,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:19:52','2023-06-09 15:19:52'),(250,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:20:11','2023-06-09 20:20:11'),(251,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:20:52','2023-06-09 15:20:52'),(252,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:21:11','2023-06-09 20:21:11'),(253,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:21:52','2023-06-09 15:21:52'),(254,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:22:11','2023-06-09 20:22:11'),(255,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:22:52','2023-06-09 15:22:52'),(256,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:23:11','2023-06-09 20:23:11'),(257,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:23:52','2023-06-09 15:23:52'),(258,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:24:11','2023-06-09 20:24:11'),(259,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:24:52','2023-06-09 15:24:52'),(260,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:25:11','2023-06-09 20:25:11'),(261,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:25:52','2023-06-09 15:25:52'),(262,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:26:11','2023-06-09 20:26:11'),(263,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:26:52','2023-06-09 15:26:52'),(264,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:27:11','2023-06-09 20:27:11'),(265,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:27:52','2023-06-09 15:27:52'),(266,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:28:11','2023-06-09 20:28:11'),(267,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:28:52','2023-06-09 15:28:52'),(268,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:29:11','2023-06-09 20:29:11'),(269,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:29:52','2023-06-09 15:29:52'),(270,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:30:11','2023-06-09 20:30:11'),(271,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:30:52','2023-06-09 15:30:52'),(272,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:31:12','2023-06-09 20:31:12'),(273,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:31:52','2023-06-09 15:31:52'),(274,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:32:11','2023-06-09 20:32:11'),(275,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:32:52','2023-06-09 15:32:52'),(276,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:33:11','2023-06-09 20:33:11'),(277,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:33:52','2023-06-09 15:33:52'),(278,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:34:11','2023-06-09 20:34:11'),(279,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:34:52','2023-06-09 15:34:52'),(280,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:35:12','2023-06-09 20:35:12'),(281,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:35:52','2023-06-09 15:35:52'),(282,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:36:11','2023-06-09 20:36:11'),(283,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:36:52','2023-06-09 15:36:52'),(284,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:37:11','2023-06-09 20:37:11'),(285,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:37:52','2023-06-09 15:37:52'),(286,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:38:12','2023-06-09 20:38:12'),(287,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:38:52','2023-06-09 15:38:52'),(288,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:39:11','2023-06-09 20:39:11'),(289,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:39:52','2023-06-09 15:39:52'),(290,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:40:12','2023-06-09 20:40:12'),(291,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:40:52','2023-06-09 15:40:52'),(292,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:41:11','2023-06-09 20:41:11'),(293,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:41:52','2023-06-09 15:41:52'),(294,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:42:11','2023-06-09 20:42:11'),(295,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:42:52','2023-06-09 15:42:52'),(296,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:43:11','2023-06-09 20:43:11'),(297,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:43:52','2023-06-09 15:43:52'),(298,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:44:11','2023-06-09 20:44:11'),(299,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:44:52','2023-06-09 15:44:52'),(300,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:45:11','2023-06-09 20:45:11'),(301,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:45:52','2023-06-09 15:45:52'),(302,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:46:11','2023-06-09 20:46:11'),(303,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:46:52','2023-06-09 15:46:52'),(304,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:47:12','2023-06-09 20:47:12'),(305,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:47:52','2023-06-09 15:47:52'),(306,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:48:11','2023-06-09 20:48:11'),(307,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:48:52','2023-06-09 15:48:52'),(308,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:49:11','2023-06-09 20:49:11'),(309,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:49:52','2023-06-09 15:49:52'),(310,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:50:11','2023-06-09 20:50:11'),(311,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:50:52','2023-06-09 15:50:52'),(312,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:51:11','2023-06-09 20:51:11'),(313,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:51:52','2023-06-09 15:51:52'),(314,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:52:12','2023-06-09 20:52:12'),(315,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:52:52','2023-06-09 15:52:52'),(316,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:53:11','2023-06-09 20:53:11'),(317,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:53:52','2023-06-09 15:53:52'),(318,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:54:12','2023-06-09 20:54:12'),(319,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:54:52','2023-06-09 15:54:52'),(320,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:55:11','2023-06-09 20:55:11'),(321,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:55:52','2023-06-09 15:55:52'),(322,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:56:11','2023-06-09 20:56:11'),(323,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:56:52','2023-06-09 15:56:52'),(324,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:57:12','2023-06-09 20:57:12'),(325,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:57:52','2023-06-09 15:57:52'),(326,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:58:11','2023-06-09 20:58:11'),(327,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:58:52','2023-06-09 15:58:52'),(328,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 20:59:11','2023-06-09 20:59:11'),(329,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 15:59:52','2023-06-09 15:59:52'),(330,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:00:11','2023-06-09 21:00:11'),(331,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:00:52','2023-06-09 16:00:52'),(332,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:01:11','2023-06-09 21:01:11'),(333,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:01:52','2023-06-09 16:01:52'),(334,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:02:12','2023-06-09 21:02:12'),(335,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:02:52','2023-06-09 16:02:52'),(336,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:03:11','2023-06-09 21:03:11'),(337,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:03:52','2023-06-09 16:03:52'),(338,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:04:12','2023-06-09 21:04:12'),(339,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:04:52','2023-06-09 16:04:52'),(340,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:05:11','2023-06-09 21:05:11'),(341,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:05:52','2023-06-09 16:05:52'),(342,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:06:11','2023-06-09 21:06:11'),(343,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:06:52','2023-06-09 16:06:52'),(344,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:07:12','2023-06-09 21:07:12'),(345,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:07:52','2023-06-09 16:07:52'),(346,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:08:11','2023-06-09 21:08:11'),(347,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:08:52','2023-06-09 16:08:52'),(348,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:09:11','2023-06-09 21:09:11'),(349,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:09:52','2023-06-09 16:09:52'),(350,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:10:12','2023-06-09 21:10:12'),(351,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:10:52','2023-06-09 16:10:52'),(352,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:11:12','2023-06-09 21:11:12'),(353,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:11:52','2023-06-09 16:11:52'),(354,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:12:12','2023-06-09 21:12:12'),(355,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:12:52','2023-06-09 16:12:52'),(356,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:13:11','2023-06-09 21:13:11'),(357,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:13:52','2023-06-09 16:13:52'),(358,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:14:12','2023-06-09 21:14:12'),(359,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:14:52','2023-06-09 16:14:52'),(360,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:15:12','2023-06-09 21:15:12'),(361,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:15:52','2023-06-09 16:15:52'),(362,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:16:11','2023-06-09 21:16:11'),(363,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:16:52','2023-06-09 16:16:52'),(364,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:17:12','2023-06-09 21:17:12'),(365,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:17:52','2023-06-09 16:17:52'),(366,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:18:12','2023-06-09 21:18:12'),(367,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:18:52','2023-06-09 16:18:52'),(368,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:19:12','2023-06-09 21:19:12'),(369,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:19:52','2023-06-09 16:19:52'),(370,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:20:12','2023-06-09 21:20:12'),(371,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:20:52','2023-06-09 16:20:52'),(372,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:21:12','2023-06-09 21:21:12'),(373,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:21:52','2023-06-09 16:21:52'),(374,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:22:12','2023-06-09 21:22:12'),(375,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:22:52','2023-06-09 16:22:52'),(376,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:23:12','2023-06-09 21:23:12'),(377,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:23:52','2023-06-09 16:23:52'),(378,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:24:12','2023-06-09 21:24:12'),(379,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:24:52','2023-06-09 16:24:52'),(380,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:25:11','2023-06-09 21:25:11'),(381,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:25:52','2023-06-09 16:25:52'),(382,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:26:11','2023-06-09 21:26:11'),(383,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:26:52','2023-06-09 16:26:52'),(384,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:27:11','2023-06-09 21:27:11'),(385,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:27:52','2023-06-09 16:27:52'),(386,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:28:11','2023-06-09 21:28:11'),(387,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:28:52','2023-06-09 16:28:52'),(388,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:29:11','2023-06-09 21:29:11'),(389,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:29:52','2023-06-09 16:29:52'),(390,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:30:11','2023-06-09 21:30:11'),(391,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:30:52','2023-06-09 16:30:52'),(392,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:31:11','2023-06-09 21:31:11'),(393,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:31:52','2023-06-09 16:31:52'),(394,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:32:11','2023-06-09 21:32:11'),(395,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:32:52','2023-06-09 16:32:52'),(396,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:33:11','2023-06-09 21:33:11'),(397,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:33:52','2023-06-09 16:33:52'),(398,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:34:11','2023-06-09 21:34:11'),(399,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:34:52','2023-06-09 16:34:52'),(400,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:35:11','2023-06-09 21:35:11'),(401,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:35:52','2023-06-09 16:35:52'),(402,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:36:11','2023-06-09 21:36:11'),(403,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:36:52','2023-06-09 16:36:52'),(404,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:37:11','2023-06-09 21:37:11'),(405,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:37:52','2023-06-09 16:37:52'),(406,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:38:11','2023-06-09 21:38:11'),(407,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:38:52','2023-06-09 16:38:52'),(408,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:39:11','2023-06-09 21:39:11'),(409,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:39:52','2023-06-09 16:39:52'),(410,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:40:11','2023-06-09 21:40:11'),(411,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:40:52','2023-06-09 16:40:52'),(412,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:41:11','2023-06-09 21:41:11'),(413,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:41:52','2023-06-09 16:41:52'),(414,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:42:11','2023-06-09 21:42:11'),(415,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:42:52','2023-06-09 16:42:52'),(416,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:43:11','2023-06-09 21:43:11'),(417,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:43:52','2023-06-09 16:43:52'),(418,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:44:11','2023-06-09 21:44:11'),(419,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:44:52','2023-06-09 16:44:52'),(420,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:45:11','2023-06-09 21:45:11'),(421,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:45:52','2023-06-09 16:45:52'),(422,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:46:11','2023-06-09 21:46:11'),(423,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:46:52','2023-06-09 16:46:52'),(424,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:47:11','2023-06-09 21:47:11'),(425,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:47:52','2023-06-09 16:47:52'),(426,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:48:11','2023-06-09 21:48:11'),(427,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:48:52','2023-06-09 16:48:52'),(428,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 21:49:11','2023-06-09 21:49:11'),(429,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 16:49:52','2023-06-09 16:49:52'),(430,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:47:19','2023-06-10 12:47:19'),(431,'error','ErrorException: Trying to get property \'slide_items\' of non-object in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/components/Sliders.php:49\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/components/Sliders.php(49): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Trying to get p...\', \'/Users/tmstore/...\', 49, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/CmsCompoundObject.php(178): TPS\\Birzha\\Components\\Sliders->onRun()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(501): Cms\\Classes\\CmsCompoundObject->runComponents()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(394): Cms\\Classes\\Controller->execPageCycle()\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(225): Cms\\Classes\\Controller->runPage(Object(Cms\\Classes\\Page))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/CmsController.php(50): Cms\\Classes\\Controller->run(\'/\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Cms\\Classes\\CmsController->run(\'/\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(45): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(219): Illuminate\\Routing\\ControllerDispatcher->dispatch(Object(Illuminate\\Routing\\Route), Object(Cms\\Classes\\CmsController), \'run\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(176): Illuminate\\Routing\\Route->runController()\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(681): Illuminate\\Routing\\Route->run()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/translate/classes/LocaleMiddleware.php(29): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): RainLab\\Translate\\Classes\\LocaleMiddleware->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(56): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(683): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(658): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(624): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Router/CoreRouter.php(20): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): October\\Rain\\Router\\CoreRouter->dispatch(Object(Illuminate\\Http\\Request))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#32 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Http/Middleware/CheckForMaintenanceMode.php(25): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Http/Middleware/TrustHosts.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Http\\Middleware\\TrustHosts->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/offline/cors/classes/HandleCors.php(36): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): OFFLINE\\CORS\\Classes\\HandleCors->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(145): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#40 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request))\n#41 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#43 {main}','[]','2023-06-10 12:47:53','2023-06-10 12:47:53'),(432,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:48:07','2023-06-10 12:48:07'),(433,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:49:07','2023-06-10 12:49:07'),(434,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:50:07','2023-06-10 12:50:07'),(435,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:51:06','2023-06-10 12:51:06'),(436,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:52:07','2023-06-10 12:52:07'),(437,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:53:06','2023-06-10 12:53:06'),(438,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:54:06','2023-06-10 12:54:06'),(439,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:55:06','2023-06-10 12:55:06'),(440,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:56:06','2023-06-10 12:56:06'),(441,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:57:06','2023-06-10 12:57:06'),(442,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:58:06','2023-06-10 12:58:06'),(443,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 12:59:06','2023-06-10 12:59:06'),(444,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:00:06','2023-06-10 13:00:06'),(445,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:01:07','2023-06-10 13:01:07'),(446,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:02:06','2023-06-10 13:02:06'),(447,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:03:06','2023-06-10 13:03:06'),(448,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:04:06','2023-06-10 13:04:06'),(449,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:05:06','2023-06-10 13:05:06'),(450,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:06:06','2023-06-10 13:06:06'),(451,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:07:06','2023-06-10 13:07:06'),(452,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:08:06','2023-06-10 13:08:06'),(453,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:09:06','2023-06-10 13:09:06'),(454,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:10:06','2023-06-10 13:10:06'),(455,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:11:06','2023-06-10 13:11:06'),(456,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:12:06','2023-06-10 13:12:06'),(457,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:13:06','2023-06-10 13:13:06'),(458,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:14:06','2023-06-10 13:14:06'),(459,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:15:06','2023-06-10 13:15:06'),(460,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:16:07','2023-06-10 13:16:07'),(461,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:17:07','2023-06-10 13:17:07'),(462,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:18:07','2023-06-10 13:18:07'),(463,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:19:06','2023-06-10 13:19:06'),(464,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:20:06','2023-06-10 13:20:06'),(465,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:21:06','2023-06-10 13:21:06'),(466,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:22:07','2023-06-10 13:22:07'),(467,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:23:06','2023-06-10 13:23:06'),(468,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:24:06','2023-06-10 13:24:06'),(469,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:25:06','2023-06-10 13:25:06'),(470,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:26:06','2023-06-10 13:26:06'),(471,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:27:06','2023-06-10 13:27:06'),(472,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:28:06','2023-06-10 13:28:06'),(473,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:29:06','2023-06-10 13:29:06'),(474,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:30:06','2023-06-10 13:30:06'),(475,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:31:06','2023-06-10 13:31:06'),(476,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:32:07','2023-06-10 13:32:07'),(477,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:33:07','2023-06-10 13:33:07'),(478,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:34:06','2023-06-10 13:34:06'),(479,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:35:06','2023-06-10 13:35:06'),(480,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:36:07','2023-06-10 13:36:07'),(481,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:37:06','2023-06-10 13:37:06'),(482,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:38:07','2023-06-10 13:38:07'),(483,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:39:06','2023-06-10 13:39:06'),(484,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:40:06','2023-06-10 13:40:06'),(485,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:41:07','2023-06-10 13:41:07'),(486,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:42:06','2023-06-10 13:42:06'),(487,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:43:06','2023-06-10 13:43:06'),(488,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:44:06','2023-06-10 13:44:06'),(489,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:45:06','2023-06-10 13:45:06'),(490,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:46:07','2023-06-10 13:46:07'),(491,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:47:06','2023-06-10 13:47:06'),(492,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:48:06','2023-06-10 13:48:06'),(493,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:49:07','2023-06-10 13:49:07'),(494,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:50:07','2023-06-10 13:50:07'),(495,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:51:06','2023-06-10 13:51:06'),(496,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:52:07','2023-06-10 13:52:07'),(497,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:53:06','2023-06-10 13:53:06'),(498,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:54:06','2023-06-10 13:54:06'),(499,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:55:06','2023-06-10 13:55:06'),(500,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:56:07','2023-06-10 13:56:07'),(501,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:57:06','2023-06-10 13:57:06'),(502,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:58:06','2023-06-10 13:58:06'),(503,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 13:59:06','2023-06-10 13:59:06'),(504,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:00:07','2023-06-10 14:00:07'),(505,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:01:07','2023-06-10 14:01:07'),(506,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:02:06','2023-06-10 14:02:06'),(507,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:03:07','2023-06-10 14:03:07'),(508,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:04:07','2023-06-10 14:04:07'),(509,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:05:07','2023-06-10 14:05:07'),(510,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:06:07','2023-06-10 14:06:07'),(511,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:07:06','2023-06-10 14:07:06'),(512,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:08:07','2023-06-10 14:08:07'),(513,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:09:06','2023-06-10 14:09:06'),(514,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:10:06','2023-06-10 14:10:06'),(515,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:11:07','2023-06-10 14:11:07'),(516,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:12:06','2023-06-10 14:12:06'),(517,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:13:07','2023-06-10 14:13:07'),(518,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:14:07','2023-06-10 14:14:07'),(519,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:15:07','2023-06-10 14:15:07'),(520,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:16:07','2023-06-10 14:16:07'),(521,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:17:07','2023-06-10 14:17:07'),(522,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:18:07','2023-06-10 14:18:07'),(523,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:19:07','2023-06-10 14:19:07'),(524,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:20:07','2023-06-10 14:20:07'),(525,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:21:07','2023-06-10 14:21:07'),(526,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:22:07','2023-06-10 14:22:07'),(527,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:23:07','2023-06-10 14:23:07'),(528,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:24:07','2023-06-10 14:24:07'),(529,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:25:07','2023-06-10 14:25:07'),(530,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:26:07','2023-06-10 14:26:07'),(531,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:27:07','2023-06-10 14:27:07'),(532,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:28:07','2023-06-10 14:28:07'),(533,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:29:07','2023-06-10 14:29:07'),(534,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:30:07','2023-06-10 14:30:07'),(535,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:31:07','2023-06-10 14:31:07'),(536,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:32:07','2023-06-10 14:32:07'),(537,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:33:07','2023-06-10 14:33:07'),(538,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:34:07','2023-06-10 14:34:07'),(539,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:35:07','2023-06-10 14:35:07'),(540,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:36:07','2023-06-10 14:36:07'),(541,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:37:07','2023-06-10 14:37:07'),(542,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:38:07','2023-06-10 14:38:07'),(543,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:39:07','2023-06-10 14:39:07'),(544,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:40:07','2023-06-10 14:40:07'),(545,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:41:07','2023-06-10 14:41:07'),(546,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:42:07','2023-06-10 14:42:07'),(547,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:43:07','2023-06-10 14:43:07'),(548,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:44:07','2023-06-10 14:44:07'),(549,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:45:07','2023-06-10 14:45:07'),(550,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:46:07','2023-06-10 14:46:07'),(551,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:47:07','2023-06-10 14:47:07'),(552,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:48:07','2023-06-10 14:48:07'),(553,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:49:07','2023-06-10 14:49:07'),(554,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:50:07','2023-06-10 14:50:07'),(555,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:51:07','2023-06-10 14:51:07'),(556,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:52:07','2023-06-10 14:52:07'),(557,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:53:07','2023-06-10 14:53:07'),(558,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:54:07','2023-06-10 14:54:07'),(559,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:55:07','2023-06-10 14:55:07'),(560,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:56:07','2023-06-10 14:56:07'),(561,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:57:07','2023-06-10 14:57:07'),(562,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:58:07','2023-06-10 14:58:07'),(563,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 14:59:07','2023-06-10 14:59:07'),(564,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:00:07','2023-06-10 15:00:07'),(565,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:01:07','2023-06-10 15:01:07'),(566,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:02:07','2023-06-10 15:02:07'),(567,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:03:08','2023-06-10 15:03:08'),(568,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:04:07','2023-06-10 15:04:07'),(569,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:05:07','2023-06-10 15:05:07'),(570,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:06:07','2023-06-10 15:06:07'),(571,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:07:07','2023-06-10 15:07:07'),(572,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:08:07','2023-06-10 15:08:07'),(573,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:09:07','2023-06-10 15:09:07'),(574,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:10:07','2023-06-10 15:10:07'),(575,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:11:07','2023-06-10 15:11:07'),(576,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:12:07','2023-06-10 15:12:07'),(577,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:13:07','2023-06-10 15:13:07'),(578,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-10 15:14:07','2023-06-10 15:14:07'),(579,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:24:08','2023-07-22 11:24:08'),(580,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:25:06','2023-07-22 11:25:06'),(581,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:26:07','2023-07-22 11:26:07'),(582,'error','ErrorException: Trying to get property \'slide_items\' of non-object in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/components/Sliders.php:49\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/tps/birzha/components/Sliders.php(49): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Trying to get p...\', \'/Users/tmstore/...\', 49, Array)\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/CmsCompoundObject.php(178): TPS\\Birzha\\Components\\Sliders->onRun()\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(501): Cms\\Classes\\CmsCompoundObject->runComponents()\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(394): Cms\\Classes\\Controller->execPageCycle()\n#4 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/Controller.php(225): Cms\\Classes\\Controller->runPage(Object(Cms\\Classes\\Page))\n#5 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/modules/cms/Classes/CmsController.php(50): Cms\\Classes\\Controller->run(\'/\')\n#6 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): Cms\\Classes\\CmsController->run(\'/\')\n#7 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(45): Illuminate\\Routing\\Controller->callAction(\'run\', Array)\n#8 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(219): Illuminate\\Routing\\ControllerDispatcher->dispatch(Object(Illuminate\\Routing\\Route), Object(Cms\\Classes\\CmsController), \'run\')\n#9 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Route.php(176): Illuminate\\Routing\\Route->runController()\n#10 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(681): Illuminate\\Routing\\Route->run()\n#11 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))\n#12 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/rainlab/translate/classes/LocaleMiddleware.php(29): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#13 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): RainLab\\Translate\\Classes\\LocaleMiddleware->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#14 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#15 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#16 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#17 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#18 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(56): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#19 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#20 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#21 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#22 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#23 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#24 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#25 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(683): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(658): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))\n#27 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Routing/Router.php(624): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))\n#28 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Router/CoreRouter.php(20): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request))\n#29 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): October\\Rain\\Router\\CoreRouter->dispatch(Object(Illuminate\\Http\\Request))\n#30 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))\n#31 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#32 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Foundation/Http/Middleware/CheckForMaintenanceMode.php(25): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#33 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#34 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/october/rain/src/Http/Middleware/TrustHosts.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#35 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): October\\Rain\\Http\\Middleware\\TrustHosts->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#36 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/plugins/offline/cors/classes/HandleCors.php(36): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#37 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(171): OFFLINE\\CORS\\Classes\\HandleCors->handle(Object(Illuminate\\Http\\Request), Object(Closure))\n#38 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(105): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))\n#39 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(145): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#40 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request))\n#41 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/index.php(43): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))\n#42 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/server.php(17): require_once(\'/Users/tmstore/...\')\n#43 {main}','[]','2023-07-22 11:26:17','2023-07-22 11:26:17'),(583,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:27:07','2023-07-22 11:27:07'),(584,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:28:07','2023-07-22 11:28:07'),(585,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:29:06','2023-07-22 11:29:06'),(586,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:30:06','2023-07-22 11:30:06'),(587,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:31:07','2023-07-22 11:31:07'),(588,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:32:06','2023-07-22 11:32:06'),(589,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:33:06','2023-07-22 11:33:06'),(590,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:34:07','2023-07-22 11:34:07'),(591,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:35:07','2023-07-22 11:35:07'),(592,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:36:06','2023-07-22 11:36:06'),(593,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:37:07','2023-07-22 11:37:07'),(594,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:38:07','2023-07-22 11:38:07'),(595,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:39:07','2023-07-22 11:39:07'),(596,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:40:06','2023-07-22 11:40:06'),(597,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:41:07','2023-07-22 11:41:07'),(598,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:42:06','2023-07-22 11:42:06'),(599,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:43:06','2023-07-22 11:43:06'),(600,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:44:06','2023-07-22 11:44:06'),(601,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:45:06','2023-07-22 11:45:06'),(602,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:46:07','2023-07-22 11:46:07'),(603,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:47:06','2023-07-22 11:47:06'),(604,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:48:06','2023-07-22 11:48:06'),(605,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:49:07','2023-07-22 11:49:07'),(606,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:50:06','2023-07-22 11:50:06'),(607,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:51:06','2023-07-22 11:51:06'),(608,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:52:06','2023-07-22 11:52:06'),(609,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:53:07','2023-07-22 11:53:07'),(610,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:54:06','2023-07-22 11:54:06'),(611,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:55:07','2023-07-22 11:55:07'),(612,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:56:07','2023-07-22 11:56:07'),(613,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:57:07','2023-07-22 11:57:07'),(614,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:58:07','2023-07-22 11:58:07'),(615,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 11:59:07','2023-07-22 11:59:07'),(616,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:00:07','2023-07-22 12:00:07'),(617,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:01:07','2023-07-22 12:01:07'),(618,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:02:07','2023-07-22 12:02:07'),(619,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:03:07','2023-07-22 12:03:07'),(620,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:04:07','2023-07-22 12:04:07'),(621,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:05:07','2023-07-22 12:05:07'),(622,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:06:07','2023-07-22 12:06:07'),(623,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:07:07','2023-07-22 12:07:07'),(624,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:08:07','2023-07-22 12:08:07'),(625,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:09:07','2023-07-22 12:09:07'),(626,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:10:07','2023-07-22 12:10:07'),(627,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:11:07','2023-07-22 12:11:07'),(628,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:12:07','2023-07-22 12:12:07'),(629,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:13:07','2023-07-22 12:13:07'),(630,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:14:07','2023-07-22 12:14:07'),(631,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:15:07','2023-07-22 12:15:07'),(632,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:16:07','2023-07-22 12:16:07'),(633,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:17:07','2023-07-22 12:17:07'),(634,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:18:07','2023-07-22 12:18:07'),(635,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:19:07','2023-07-22 12:19:07');
INSERT INTO `system_event_logs` VALUES (636,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:20:07','2023-07-22 12:20:07'),(637,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:21:07','2023-07-22 12:21:07'),(638,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:22:07','2023-07-22 12:22:07'),(639,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:23:07','2023-07-22 12:23:07'),(640,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:24:07','2023-07-22 12:24:07'),(641,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:25:07','2023-07-22 12:25:07'),(642,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:26:07','2023-07-22 12:26:07'),(643,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:27:07','2023-07-22 12:27:07'),(644,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:28:07','2023-07-22 12:28:07'),(645,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:29:07','2023-07-22 12:29:07'),(646,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:30:07','2023-07-22 12:30:07'),(647,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:31:07','2023-07-22 12:31:07'),(648,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:32:07','2023-07-22 12:32:07'),(649,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:33:07','2023-07-22 12:33:07'),(650,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:34:07','2023-07-22 12:34:07'),(651,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:35:07','2023-07-22 12:35:07'),(652,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:36:07','2023-07-22 12:36:07'),(653,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:37:07','2023-07-22 12:37:07'),(654,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:38:07','2023-07-22 12:38:07'),(655,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:39:07','2023-07-22 12:39:07'),(656,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:40:07','2023-07-22 12:40:07'),(657,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:41:07','2023-07-22 12:41:07'),(658,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:42:07','2023-07-22 12:42:07'),(659,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:43:07','2023-07-22 12:43:07'),(660,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:44:07','2023-07-22 12:44:07'),(661,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:45:07','2023-07-22 12:45:07'),(662,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:46:07','2023-07-22 12:46:07'),(663,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:47:07','2023-07-22 12:47:07'),(664,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:48:07','2023-07-22 12:48:07'),(665,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:49:07','2023-07-22 12:49:07'),(666,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:50:07','2023-07-22 12:50:07'),(667,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:51:07','2023-07-22 12:51:07'),(668,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:52:07','2023-07-22 12:52:07'),(669,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:53:07','2023-07-22 12:53:07'),(670,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:54:07','2023-07-22 12:54:07'),(671,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:55:07','2023-07-22 12:55:07'),(672,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:56:07','2023-07-22 12:56:07'),(673,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:57:07','2023-07-22 12:57:07'),(674,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:58:07','2023-07-22 12:58:07'),(675,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:59:07','2023-07-22 12:59:07'),(676,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:00:07','2023-07-22 13:00:07'),(677,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:01:07','2023-07-22 13:01:07'),(678,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:02:07','2023-07-22 13:02:07'),(679,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:03:07','2023-07-22 13:03:07'),(680,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:04:07','2023-07-22 13:04:07'),(681,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:05:07','2023-07-22 13:05:07'),(682,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:06:07','2023-07-22 13:06:07'),(683,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:07:07','2023-07-22 13:07:07'),(684,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:08:07','2023-07-22 13:08:07'),(685,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:09:07','2023-07-22 13:09:07'),(686,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:10:07','2023-07-22 13:10:07'),(687,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:11:07','2023-07-22 13:11:07'),(688,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:12:07','2023-07-22 13:12:07'),(689,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:13:07','2023-07-22 13:13:07'),(690,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:14:07','2023-07-22 13:14:07'),(691,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:15:07','2023-07-22 13:15:07'),(692,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:16:07','2023-07-22 13:16:07'),(693,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:17:07','2023-07-22 13:17:07'),(694,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:18:07','2023-07-22 13:18:07'),(695,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:19:07','2023-07-22 13:19:07'),(696,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:20:07','2023-07-22 13:20:07'),(697,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:21:07','2023-07-22 13:21:07'),(698,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:22:07','2023-07-22 13:22:07'),(699,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:23:07','2023-07-22 13:23:07'),(700,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:24:07','2023-07-22 13:24:07'),(701,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:25:07','2023-07-22 13:25:07'),(702,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:26:07','2023-07-22 13:26:07'),(703,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:27:07','2023-07-22 13:27:07'),(704,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:28:07','2023-07-22 13:28:07'),(705,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:29:07','2023-07-22 13:29:07'),(706,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:30:07','2023-07-22 13:30:07'),(707,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:31:07','2023-07-22 13:31:07'),(708,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:32:07','2023-07-22 13:32:07'),(709,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:33:07','2023-07-22 13:33:07'),(710,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:34:07','2023-07-22 13:34:07'),(711,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:35:07','2023-07-22 13:35:07'),(712,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:36:07','2023-07-22 13:36:07'),(713,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:37:07','2023-07-22 13:37:07'),(714,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:38:07','2023-07-22 13:38:07'),(715,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:39:07','2023-07-22 13:39:07'),(716,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:40:07','2023-07-22 13:40:07'),(717,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:41:07','2023-07-22 13:41:07'),(718,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:42:07','2023-07-22 13:42:07'),(719,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:43:07','2023-07-22 13:43:07'),(720,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:44:07','2023-07-22 13:44:07'),(721,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:45:07','2023-07-22 13:45:07'),(722,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:46:07','2023-07-22 13:46:07'),(723,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:47:07','2023-07-22 13:47:07'),(724,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:48:07','2023-07-22 13:48:07'),(725,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:49:07','2023-07-22 13:49:07'),(726,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:50:07','2023-07-22 13:50:07'),(727,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:51:07','2023-07-22 13:51:07'),(728,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:52:07','2023-07-22 13:52:07'),(729,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:53:07','2023-07-22 13:53:07'),(730,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:54:07','2023-07-22 13:54:07'),(731,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:55:07','2023-07-22 13:55:07'),(732,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:56:07','2023-07-22 13:56:07'),(733,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:57:07','2023-07-22 13:57:07'),(734,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:58:07','2023-07-22 13:58:07'),(735,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 13:59:07','2023-07-22 13:59:07'),(736,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:00:07','2023-07-22 14:00:07'),(737,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:01:07','2023-07-22 14:01:07'),(738,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:02:07','2023-07-22 14:02:07'),(739,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:03:07','2023-07-22 14:03:07'),(740,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:04:07','2023-07-22 14:04:07'),(741,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:05:07','2023-07-22 14:05:07'),(742,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:06:07','2023-07-22 14:06:07'),(743,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:07:07','2023-07-22 14:07:07'),(744,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:08:07','2023-07-22 14:08:07'),(745,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:09:07','2023-07-22 14:09:07'),(746,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:10:07','2023-07-22 14:10:07'),(747,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:11:07','2023-07-22 14:11:07'),(748,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:12:07','2023-07-22 14:12:07'),(749,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:13:07','2023-07-22 14:13:07'),(750,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:14:07','2023-07-22 14:14:07'),(751,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:15:07','2023-07-22 14:15:07'),(752,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:16:07','2023-07-22 14:16:07'),(753,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:17:07','2023-07-22 14:17:07'),(754,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:18:07','2023-07-22 14:18:07'),(755,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:19:07','2023-07-22 14:19:07'),(756,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:20:07','2023-07-22 14:20:07'),(757,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:21:07','2023-07-22 14:21:07'),(758,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:22:07','2023-07-22 14:22:07'),(759,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:23:07','2023-07-22 14:23:07'),(760,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:24:07','2023-07-22 14:24:07'),(761,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:25:07','2023-07-22 14:25:07'),(762,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:26:07','2023-07-22 14:26:07'),(763,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:27:07','2023-07-22 14:27:07'),(764,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:28:07','2023-07-22 14:28:07'),(765,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:29:07','2023-07-22 14:29:07'),(766,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:30:07','2023-07-22 14:30:07'),(767,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:31:07','2023-07-22 14:31:07'),(768,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:32:07','2023-07-22 14:32:07'),(769,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:33:08','2023-07-22 14:33:08'),(770,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:34:07','2023-07-22 14:34:07'),(771,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:35:07','2023-07-22 14:35:07'),(772,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:36:07','2023-07-22 14:36:07'),(773,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:37:07','2023-07-22 14:37:07'),(774,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:38:07','2023-07-22 14:38:07'),(775,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:39:07','2023-07-22 14:39:07'),(776,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:40:07','2023-07-22 14:40:07'),(777,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:41:07','2023-07-22 14:41:07'),(778,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:42:07','2023-07-22 14:42:07'),(779,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:43:07','2023-07-22 14:43:07'),(780,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:44:07','2023-07-22 14:44:07'),(781,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:45:07','2023-07-22 14:45:07'),(782,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:46:07','2023-07-22 14:46:07'),(783,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:47:07','2023-07-22 14:47:07'),(784,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:48:07','2023-07-22 14:48:07'),(785,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:49:07','2023-07-22 14:49:07'),(786,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:50:07','2023-07-22 14:50:07'),(787,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:51:07','2023-07-22 14:51:07'),(788,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:52:07','2023-07-22 14:52:07'),(789,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:53:07','2023-07-22 14:53:07'),(790,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:54:07','2023-07-22 14:54:07'),(791,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:55:07','2023-07-22 14:55:07'),(792,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:56:07','2023-07-22 14:56:07'),(793,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:57:07','2023-07-22 14:57:07'),(794,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:58:07','2023-07-22 14:58:07'),(795,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 14:59:07','2023-07-22 14:59:07'),(796,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:00:07','2023-07-22 15:00:07'),(797,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:01:07','2023-07-22 15:01:07'),(798,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:02:07','2023-07-22 15:02:07'),(799,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:03:07','2023-07-22 15:03:07'),(800,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:04:07','2023-07-22 15:04:07'),(801,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:05:07','2023-07-22 15:05:07'),(802,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:06:07','2023-07-22 15:06:07'),(803,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:07:07','2023-07-22 15:07:07'),(804,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:08:07','2023-07-22 15:08:07'),(805,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:09:07','2023-07-22 15:09:07'),(806,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:10:07','2023-07-22 15:10:07'),(807,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:11:07','2023-07-22 15:11:07'),(808,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:12:07','2023-07-22 15:12:07'),(809,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:13:07','2023-07-22 15:13:07'),(810,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:14:07','2023-07-22 15:14:07'),(811,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:15:07','2023-07-22 15:15:07'),(812,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:16:07','2023-07-22 15:16:07'),(813,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:17:07','2023-07-22 15:17:07'),(814,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:18:08','2023-07-22 15:18:08'),(815,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:19:08','2023-07-22 15:19:08'),(816,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:20:07','2023-07-22 15:20:07'),(817,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:21:07','2023-07-22 15:21:07'),(818,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:22:07','2023-07-22 15:22:07'),(819,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:23:07','2023-07-22 15:23:07'),(820,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:24:07','2023-07-22 15:24:07'),(821,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:25:07','2023-07-22 15:25:07'),(822,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:26:07','2023-07-22 15:26:07'),(823,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:27:07','2023-07-22 15:27:07'),(824,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:28:07','2023-07-22 15:28:07'),(825,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:29:07','2023-07-22 15:29:07'),(826,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:30:07','2023-07-22 15:30:07'),(827,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:31:07','2023-07-22 15:31:07'),(828,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:32:07','2023-07-22 15:32:07'),(829,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:33:07','2023-07-22 15:33:07'),(830,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:34:07','2023-07-22 15:34:07'),(831,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:35:07','2023-07-22 15:35:07'),(832,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:36:07','2023-07-22 15:36:07'),(833,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:37:07','2023-07-22 15:37:07'),(834,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:38:07','2023-07-22 15:38:07'),(835,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:39:07','2023-07-22 15:39:07'),(836,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:40:07','2023-07-22 15:40:07'),(837,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:41:07','2023-07-22 15:41:07'),(838,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:42:07','2023-07-22 15:42:07'),(839,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:43:07','2023-07-22 15:43:07'),(840,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:44:07','2023-07-22 15:44:07'),(841,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:45:07','2023-07-22 15:45:07'),(842,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:46:07','2023-07-22 15:46:07'),(843,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:47:07','2023-07-22 15:47:07'),(844,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:48:07','2023-07-22 15:48:07'),(845,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:49:08','2023-07-22 15:49:08'),(846,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:50:07','2023-07-22 15:50:07'),(847,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:51:07','2023-07-22 15:51:07'),(848,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:52:07','2023-07-22 15:52:07'),(849,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:53:07','2023-07-22 15:53:07'),(850,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:54:08','2023-07-22 15:54:08'),(851,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:55:08','2023-07-22 15:55:08'),(852,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:56:07','2023-07-22 15:56:07'),(853,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:57:07','2023-07-22 15:57:07'),(854,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:58:07','2023-07-22 15:58:07'),(855,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 15:59:07','2023-07-22 15:59:07'),(856,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:00:07','2023-07-22 16:00:07'),(857,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:01:07','2023-07-22 16:01:07'),(858,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:02:07','2023-07-22 16:02:07'),(859,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:03:07','2023-07-22 16:03:07'),(860,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:04:07','2023-07-22 16:04:07'),(861,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:05:07','2023-07-22 16:05:07'),(862,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:06:07','2023-07-22 16:06:07'),(863,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:07:07','2023-07-22 16:07:07'),(864,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:08:07','2023-07-22 16:08:07'),(865,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:09:07','2023-07-22 16:09:07'),(866,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:10:07','2023-07-22 16:10:07'),(867,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:11:07','2023-07-22 16:11:07'),(868,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:12:07','2023-07-22 16:12:07'),(869,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:13:07','2023-07-22 16:13:07'),(870,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:14:07','2023-07-22 16:14:07'),(871,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:15:07','2023-07-22 16:15:07'),(872,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:16:08','2023-07-22 16:16:08'),(873,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:17:07','2023-07-22 16:17:07'),(874,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:18:07','2023-07-22 16:18:07'),(875,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:19:07','2023-07-22 16:19:07'),(876,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:20:08','2023-07-22 16:20:08'),(877,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:21:08','2023-07-22 16:21:08'),(878,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:22:08','2023-07-22 16:22:08'),(879,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:23:08','2023-07-22 16:23:08'),(880,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:24:08','2023-07-22 16:24:08'),(881,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:25:08','2023-07-22 16:25:08'),(882,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:26:08','2023-07-22 16:26:08'),(883,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:27:08','2023-07-22 16:27:08'),(884,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:28:08','2023-07-22 16:28:08'),(885,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:29:08','2023-07-22 16:29:08'),(886,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:30:08','2023-07-22 16:30:08'),(887,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:31:08','2023-07-22 16:31:08'),(888,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:32:08','2023-07-22 16:32:08'),(889,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:33:08','2023-07-22 16:33:08'),(890,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:34:08','2023-07-22 16:34:08'),(891,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:35:08','2023-07-22 16:35:08'),(892,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:36:08','2023-07-22 16:36:08'),(893,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:37:08','2023-07-22 16:37:08'),(894,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:38:08','2023-07-22 16:38:08'),(895,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:39:08','2023-07-22 16:39:08'),(896,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:40:08','2023-07-22 16:40:08'),(897,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:41:08','2023-07-22 16:41:08'),(898,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:42:08','2023-07-22 16:42:08'),(899,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:43:08','2023-07-22 16:43:08'),(900,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:44:08','2023-07-22 16:44:08'),(901,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:45:08','2023-07-22 16:45:08'),(902,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:46:08','2023-07-22 16:46:08'),(903,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:47:08','2023-07-22 16:47:08'),(904,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:48:08','2023-07-22 16:48:08'),(905,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:49:08','2023-07-22 16:49:08'),(906,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:50:08','2023-07-22 16:50:08'),(907,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:51:08','2023-07-22 16:51:08'),(908,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:52:08','2023-07-22 16:52:08'),(909,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:53:08','2023-07-22 16:53:08'),(910,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:54:08','2023-07-22 16:54:08'),(911,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:55:08','2023-07-22 16:55:08'),(912,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:56:08','2023-07-22 16:56:08'),(913,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:57:08','2023-07-22 16:57:08'),(914,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:58:08','2023-07-22 16:58:08'),(915,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 16:59:08','2023-07-22 16:59:08'),(916,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:00:08','2023-07-22 17:00:08'),(917,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:01:08','2023-07-22 17:01:08'),(918,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:02:08','2023-07-22 17:02:08'),(919,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:03:08','2023-07-22 17:03:08'),(920,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:04:08','2023-07-22 17:04:08'),(921,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:05:08','2023-07-22 17:05:08'),(922,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:06:08','2023-07-22 17:06:08'),(923,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:07:08','2023-07-22 17:07:08'),(924,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:08:08','2023-07-22 17:08:08'),(925,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:09:08','2023-07-22 17:09:08'),(926,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:10:08','2023-07-22 17:10:08'),(927,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:11:08','2023-07-22 17:11:08'),(928,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:12:08','2023-07-22 17:12:08'),(929,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:13:08','2023-07-22 17:13:08'),(930,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:14:08','2023-07-22 17:14:08'),(931,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:15:08','2023-07-22 17:15:08'),(932,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:16:08','2023-07-22 17:16:08'),(933,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:17:08','2023-07-22 17:17:08'),(934,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:18:08','2023-07-22 17:18:08'),(935,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:19:08','2023-07-22 17:19:08'),(936,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:20:08','2023-07-22 17:20:08'),(937,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:21:08','2023-07-22 17:21:08'),(938,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:22:08','2023-07-22 17:22:08'),(939,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:23:08','2023-07-22 17:23:08'),(940,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:24:08','2023-07-22 17:24:08'),(941,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:25:08','2023-07-22 17:25:08'),(942,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:26:08','2023-07-22 17:26:08'),(943,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:27:08','2023-07-22 17:27:08'),(944,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:28:08','2023-07-22 17:28:08'),(945,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:29:08','2023-07-22 17:29:08'),(946,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:30:08','2023-07-22 17:30:08'),(947,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:31:08','2023-07-22 17:31:08'),(948,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:32:08','2023-07-22 17:32:08'),(949,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:33:08','2023-07-22 17:33:08'),(950,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:34:08','2023-07-22 17:34:08'),(951,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:35:08','2023-07-22 17:35:08'),(952,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:36:08','2023-07-22 17:36:08'),(953,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:37:08','2023-07-22 17:37:08'),(954,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:38:08','2023-07-22 17:38:08'),(955,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:39:08','2023-07-22 17:39:08'),(956,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:40:08','2023-07-22 17:40:08'),(957,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:41:08','2023-07-22 17:41:08'),(958,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:42:08','2023-07-22 17:42:08'),(959,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:43:08','2023-07-22 17:43:08'),(960,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:44:08','2023-07-22 17:44:08'),(961,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:45:08','2023-07-22 17:45:08'),(962,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:46:08','2023-07-22 17:46:08'),(963,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:47:08','2023-07-22 17:47:08'),(964,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:48:09','2023-07-22 17:48:09'),(965,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:49:08','2023-07-22 17:49:08'),(966,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:50:08','2023-07-22 17:50:08'),(967,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:51:08','2023-07-22 17:51:08'),(968,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:52:08','2023-07-22 17:52:08'),(969,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:53:08','2023-07-22 17:53:08'),(970,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:54:08','2023-07-22 17:54:08'),(971,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:55:08','2023-07-22 17:55:08'),(972,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:56:08','2023-07-22 17:56:08'),(973,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:57:08','2023-07-22 17:57:08'),(974,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:58:08','2023-07-22 17:58:08'),(975,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 17:59:08','2023-07-22 17:59:08'),(976,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:00:08','2023-07-22 18:00:08'),(977,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:01:08','2023-07-22 18:01:08'),(978,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:02:08','2023-07-22 18:02:08'),(979,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:03:08','2023-07-22 18:03:08'),(980,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:04:08','2023-07-22 18:04:08'),(981,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:05:08','2023-07-22 18:05:08'),(982,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:06:08','2023-07-22 18:06:08'),(983,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:07:08','2023-07-22 18:07:08'),(984,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:08:08','2023-07-22 18:08:08'),(985,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:09:08','2023-07-22 18:09:08'),(986,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:10:08','2023-07-22 18:10:08'),(987,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:11:08','2023-07-22 18:11:08'),(988,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:12:08','2023-07-22 18:12:08'),(989,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:13:08','2023-07-22 18:13:08'),(990,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:14:08','2023-07-22 18:14:08'),(991,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:15:08','2023-07-22 18:15:08'),(992,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:16:08','2023-07-22 18:16:08'),(993,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:17:08','2023-07-22 18:17:08'),(994,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:18:09','2023-07-22 18:18:09'),(995,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:19:08','2023-07-22 18:19:08'),(996,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:20:08','2023-07-22 18:20:08'),(997,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:21:08','2023-07-22 18:21:08'),(998,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:22:08','2023-07-22 18:22:08'),(999,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:23:08','2023-07-22 18:23:08'),(1000,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:24:08','2023-07-22 18:24:08'),(1001,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:25:08','2023-07-22 18:25:08'),(1002,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:26:08','2023-07-22 18:26:08'),(1003,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:27:08','2023-07-22 18:27:08'),(1004,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:28:08','2023-07-22 18:28:08'),(1005,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:29:08','2023-07-22 18:29:08'),(1006,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:30:08','2023-07-22 18:30:08'),(1007,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:31:08','2023-07-22 18:31:08'),(1008,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:32:08','2023-07-22 18:32:08'),(1009,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:33:08','2023-07-22 18:33:08'),(1010,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:34:08','2023-07-22 18:34:08'),(1011,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:35:08','2023-07-22 18:35:08'),(1012,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:36:08','2023-07-22 18:36:08'),(1013,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:37:08','2023-07-22 18:37:08'),(1014,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:38:08','2023-07-22 18:38:08'),(1015,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:39:08','2023-07-22 18:39:08'),(1016,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:40:08','2023-07-22 18:40:08'),(1017,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:41:08','2023-07-22 18:41:08'),(1018,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:42:08','2023-07-22 18:42:08'),(1019,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:43:09','2023-07-22 18:43:09'),(1020,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:44:08','2023-07-22 18:44:08'),(1021,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:45:08','2023-07-22 18:45:08'),(1022,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:46:09','2023-07-22 18:46:09'),(1023,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:47:08','2023-07-22 18:47:08'),(1024,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:48:08','2023-07-22 18:48:08'),(1025,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:49:08','2023-07-22 18:49:08'),(1026,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:50:08','2023-07-22 18:50:08'),(1027,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:51:08','2023-07-22 18:51:08'),(1028,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:52:08','2023-07-22 18:52:08'),(1029,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:53:08','2023-07-22 18:53:08'),(1030,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:54:08','2023-07-22 18:54:08'),(1031,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:55:08','2023-07-22 18:55:08'),(1032,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:56:08','2023-07-22 18:56:08'),(1033,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:57:09','2023-07-22 18:57:09'),(1034,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:58:08','2023-07-22 18:58:08'),(1035,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 18:59:08','2023-07-22 18:59:08'),(1036,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:00:08','2023-07-22 19:00:08'),(1037,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:01:08','2023-07-22 19:01:08'),(1038,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:02:08','2023-07-22 19:02:08'),(1039,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:03:09','2023-07-22 19:03:09'),(1040,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:04:08','2023-07-22 19:04:08'),(1041,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:05:08','2023-07-22 19:05:08'),(1042,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:06:09','2023-07-22 19:06:09'),(1043,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:07:08','2023-07-22 19:07:08'),(1044,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:08:08','2023-07-22 19:08:08'),(1045,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:09:08','2023-07-22 19:09:08'),(1046,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:10:08','2023-07-22 19:10:08'),(1047,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:11:08','2023-07-22 19:11:08'),(1048,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:12:08','2023-07-22 19:12:08'),(1049,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:13:09','2023-07-22 19:13:09'),(1050,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:14:08','2023-07-22 19:14:08'),(1051,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:15:08','2023-07-22 19:15:08'),(1052,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:16:08','2023-07-22 19:16:08'),(1053,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:17:08','2023-07-22 19:17:08'),(1054,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:18:08','2023-07-22 19:18:08'),(1055,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:19:08','2023-07-22 19:19:08'),(1056,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:20:08','2023-07-22 19:20:08'),(1057,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:21:08','2023-07-22 19:21:08'),(1058,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:22:08','2023-07-22 19:22:08'),(1059,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:23:08','2023-07-22 19:23:08'),(1060,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:24:08','2023-07-22 19:24:08'),(1061,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:25:08','2023-07-22 19:25:08'),(1062,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:26:08','2023-07-22 19:26:08'),(1063,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:27:08','2023-07-22 19:27:08'),(1064,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:28:08','2023-07-22 19:28:08'),(1065,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:29:08','2023-07-22 19:29:08'),(1066,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:30:08','2023-07-22 19:30:08'),(1067,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:31:08','2023-07-22 19:31:08'),(1068,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:32:08','2023-07-22 19:32:08'),(1069,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:33:08','2023-07-22 19:33:08'),(1070,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:34:08','2023-07-22 19:34:08'),(1071,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:35:08','2023-07-22 19:35:08'),(1072,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:36:08','2023-07-22 19:36:08'),(1073,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:37:08','2023-07-22 19:37:08'),(1074,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:38:08','2023-07-22 19:38:08'),(1075,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:39:08','2023-07-22 19:39:08'),(1076,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:40:08','2023-07-22 19:40:08'),(1077,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:41:08','2023-07-22 19:41:08'),(1078,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:42:08','2023-07-22 19:42:08'),(1079,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:43:08','2023-07-22 19:43:08'),(1080,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:44:08','2023-07-22 19:44:08'),(1081,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:45:08','2023-07-22 19:45:08'),(1082,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:46:08','2023-07-22 19:46:08'),(1083,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:47:08','2023-07-22 19:47:08'),(1084,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:48:08','2023-07-22 19:48:08'),(1085,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:49:08','2023-07-22 19:49:08'),(1086,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:50:08','2023-07-22 19:50:08'),(1087,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:51:08','2023-07-22 19:51:08'),(1088,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:52:08','2023-07-22 19:52:08'),(1089,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:53:09','2023-07-22 19:53:09'),(1090,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:54:08','2023-07-22 19:54:08'),(1091,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:55:08','2023-07-22 19:55:08'),(1092,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:56:09','2023-07-22 19:56:09'),(1093,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:57:09','2023-07-22 19:57:09'),(1094,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:58:09','2023-07-22 19:58:09'),(1095,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 19:59:09','2023-07-22 19:59:09'),(1096,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:00:09','2023-07-22 20:00:09'),(1097,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:01:09','2023-07-22 20:01:09'),(1098,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:02:09','2023-07-22 20:02:09'),(1099,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:03:09','2023-07-22 20:03:09'),(1100,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:04:09','2023-07-22 20:04:09'),(1101,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:05:09','2023-07-22 20:05:09'),(1102,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:06:09','2023-07-22 20:06:09'),(1103,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:07:09','2023-07-22 20:07:09'),(1104,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:08:09','2023-07-22 20:08:09'),(1105,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:09:09','2023-07-22 20:09:09'),(1106,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:10:09','2023-07-22 20:10:09'),(1107,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:11:09','2023-07-22 20:11:09'),(1108,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:12:09','2023-07-22 20:12:09'),(1109,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:13:09','2023-07-22 20:13:09'),(1110,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:14:09','2023-07-22 20:14:09'),(1111,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:15:09','2023-07-22 20:15:09'),(1112,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:16:09','2023-07-22 20:16:09'),(1113,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:17:09','2023-07-22 20:17:09'),(1114,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:18:09','2023-07-22 20:18:09'),(1115,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:19:09','2023-07-22 20:19:09'),(1116,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:20:09','2023-07-22 20:20:09'),(1117,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:21:09','2023-07-22 20:21:09'),(1118,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:22:09','2023-07-22 20:22:09'),(1119,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:23:09','2023-07-22 20:23:09'),(1120,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:24:09','2023-07-22 20:24:09'),(1121,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:25:09','2023-07-22 20:25:09'),(1122,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:26:09','2023-07-22 20:26:09'),(1123,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:27:09','2023-07-22 20:27:09'),(1124,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:28:09','2023-07-22 20:28:09'),(1125,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:29:09','2023-07-22 20:29:09'),(1126,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:30:09','2023-07-22 20:30:09'),(1127,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:31:09','2023-07-22 20:31:09'),(1128,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:32:09','2023-07-22 20:32:09'),(1129,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:33:09','2023-07-22 20:33:09'),(1130,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:34:09','2023-07-22 20:34:09'),(1131,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:35:09','2023-07-22 20:35:09'),(1132,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:36:09','2023-07-22 20:36:09'),(1133,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:37:09','2023-07-22 20:37:09'),(1134,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:38:09','2023-07-22 20:38:09'),(1135,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:39:09','2023-07-22 20:39:09'),(1136,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:40:09','2023-07-22 20:40:09'),(1137,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:41:09','2023-07-22 20:41:09'),(1138,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:42:09','2023-07-22 20:42:09'),(1139,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:43:09','2023-07-22 20:43:09'),(1140,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:44:09','2023-07-22 20:44:09'),(1141,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:45:09','2023-07-22 20:45:09'),(1142,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:46:09','2023-07-22 20:46:09'),(1143,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:47:09','2023-07-22 20:47:09'),(1144,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:48:09','2023-07-22 20:48:09'),(1145,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:49:09','2023-07-22 20:49:09'),(1146,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:50:09','2023-07-22 20:50:09'),(1147,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:51:09','2023-07-22 20:51:09'),(1148,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:52:09','2023-07-22 20:52:09'),(1149,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:53:09','2023-07-22 20:53:09'),(1150,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:54:09','2023-07-22 20:54:09'),(1151,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:55:09','2023-07-22 20:55:09'),(1152,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:56:09','2023-07-22 20:56:09'),(1153,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:57:09','2023-07-22 20:57:09'),(1154,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:58:09','2023-07-22 20:58:09'),(1155,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 20:59:09','2023-07-22 20:59:09'),(1156,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:00:09','2023-07-22 21:00:09'),(1157,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:01:09','2023-07-22 21:01:09'),(1158,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:02:09','2023-07-22 21:02:09'),(1159,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:03:09','2023-07-22 21:03:09'),(1160,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:04:09','2023-07-22 21:04:09'),(1161,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:05:09','2023-07-22 21:05:09'),(1162,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:06:09','2023-07-22 21:06:09'),(1163,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:07:09','2023-07-22 21:07:09'),(1164,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:08:09','2023-07-22 21:08:09'),(1165,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:09:09','2023-07-22 21:09:09'),(1166,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:10:09','2023-07-22 21:10:09'),(1167,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:11:09','2023-07-22 21:11:09'),(1168,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:12:09','2023-07-22 21:12:09'),(1169,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:13:09','2023-07-22 21:13:09'),(1170,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:14:09','2023-07-22 21:14:09'),(1171,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:15:09','2023-07-22 21:15:09'),(1172,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:16:09','2023-07-22 21:16:09'),(1173,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:17:09','2023-07-22 21:17:09'),(1174,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:18:09','2023-07-22 21:18:09'),(1175,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:19:09','2023-07-22 21:19:09'),(1176,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:20:09','2023-07-22 21:20:09'),(1177,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:21:09','2023-07-22 21:21:09'),(1178,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:22:09','2023-07-22 21:22:09'),(1179,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:23:09','2023-07-22 21:23:09'),(1180,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:24:09','2023-07-22 21:24:09'),(1181,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:25:09','2023-07-22 21:25:09'),(1182,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:26:09','2023-07-22 21:26:09'),(1183,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:27:09','2023-07-22 21:27:09'),(1184,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:28:09','2023-07-22 21:28:09'),(1185,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:29:09','2023-07-22 21:29:09'),(1186,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:30:09','2023-07-22 21:30:09'),(1187,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:31:09','2023-07-22 21:31:09'),(1188,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:32:09','2023-07-22 21:32:09'),(1189,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:33:09','2023-07-22 21:33:09'),(1190,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:34:09','2023-07-22 21:34:09'),(1191,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:35:09','2023-07-22 21:35:09'),(1192,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:36:09','2023-07-22 21:36:09'),(1193,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:37:09','2023-07-22 21:37:09'),(1194,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:38:09','2023-07-22 21:38:09'),(1195,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:39:09','2023-07-22 21:39:09'),(1196,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:40:09','2023-07-22 21:40:09'),(1197,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:41:09','2023-07-22 21:41:09'),(1198,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:42:09','2023-07-22 21:42:09'),(1199,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:43:09','2023-07-22 21:43:09'),(1200,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:44:09','2023-07-22 21:44:09'),(1201,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:45:09','2023-07-22 21:45:09'),(1202,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:46:09','2023-07-22 21:46:09'),(1203,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:47:09','2023-07-22 21:47:09'),(1204,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:48:09','2023-07-22 21:48:09'),(1205,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:49:09','2023-07-22 21:49:09'),(1206,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:50:09','2023-07-22 21:50:09'),(1207,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:51:09','2023-07-22 21:51:09'),(1208,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:52:09','2023-07-22 21:52:09'),(1209,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:53:09','2023-07-22 21:53:09'),(1210,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:54:09','2023-07-22 21:54:09'),(1211,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:55:09','2023-07-22 21:55:09'),(1212,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:56:09','2023-07-22 21:56:09'),(1213,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:57:09','2023-07-22 21:57:09'),(1214,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:58:09','2023-07-22 21:58:09'),(1215,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 21:59:09','2023-07-22 21:59:09'),(1216,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:00:09','2023-07-22 22:00:09'),(1217,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:01:09','2023-07-22 22:01:09'),(1218,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:02:09','2023-07-22 22:02:09'),(1219,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:03:09','2023-07-22 22:03:09'),(1220,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:04:09','2023-07-22 22:04:09'),(1221,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:05:09','2023-07-22 22:05:09'),(1222,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:06:09','2023-07-22 22:06:09'),(1223,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:07:09','2023-07-22 22:07:09'),(1224,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:08:09','2023-07-22 22:08:09'),(1225,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:09:09','2023-07-22 22:09:09'),(1226,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:10:09','2023-07-22 22:10:09'),(1227,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:11:09','2023-07-22 22:11:09'),(1228,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:12:09','2023-07-22 22:12:09'),(1229,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:13:09','2023-07-22 22:13:09'),(1230,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:14:09','2023-07-22 22:14:09'),(1231,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:15:09','2023-07-22 22:15:09'),(1232,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:16:09','2023-07-22 22:16:09'),(1233,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:17:09','2023-07-22 22:17:09'),(1234,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:18:09','2023-07-22 22:18:09'),(1235,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:19:09','2023-07-22 22:19:09'),(1236,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:20:09','2023-07-22 22:20:09'),(1237,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:21:09','2023-07-22 22:21:09'),(1238,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:22:09','2023-07-22 22:22:09'),(1239,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:23:09','2023-07-22 22:23:09'),(1240,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:24:09','2023-07-22 22:24:09'),(1241,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:25:09','2023-07-22 22:25:09'),(1242,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:26:09','2023-07-22 22:26:09'),(1243,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:27:09','2023-07-22 22:27:09'),(1244,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:28:09','2023-07-22 22:28:09'),(1245,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:29:09','2023-07-22 22:29:09'),(1246,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:30:09','2023-07-22 22:30:09'),(1247,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:31:09','2023-07-22 22:31:09'),(1248,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:32:09','2023-07-22 22:32:09'),(1249,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:33:09','2023-07-22 22:33:09'),(1250,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:34:09','2023-07-22 22:34:09'),(1251,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:35:09','2023-07-22 22:35:09'),(1252,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:36:09','2023-07-22 22:36:09'),(1253,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:37:09','2023-07-22 22:37:09'),(1254,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:38:09','2023-07-22 22:38:09'),(1255,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:39:09','2023-07-22 22:39:09'),(1256,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:40:09','2023-07-22 22:40:09'),(1257,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:41:09','2023-07-22 22:41:09'),(1258,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:42:09','2023-07-22 22:42:09'),(1259,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:43:09','2023-07-22 22:43:09'),(1260,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:44:09','2023-07-22 22:44:09'),(1261,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:45:09','2023-07-22 22:45:09'),(1262,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:46:09','2023-07-22 22:46:09'),(1263,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:47:09','2023-07-22 22:47:09'),(1264,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:48:09','2023-07-22 22:48:09'),(1265,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:49:09','2023-07-22 22:49:09'),(1266,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:50:09','2023-07-22 22:50:09'),(1267,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:51:09','2023-07-22 22:51:09'),(1268,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:52:09','2023-07-22 22:52:09'),(1269,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:53:09','2023-07-22 22:53:09'),(1270,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:54:10','2023-07-22 22:54:10'),(1271,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:55:09','2023-07-22 22:55:09'),(1272,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:56:09','2023-07-22 22:56:09'),(1273,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:57:10','2023-07-22 22:57:10'),(1274,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:58:09','2023-07-22 22:58:09'),(1275,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 22:59:10','2023-07-22 22:59:10'),(1276,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:00:09','2023-07-22 23:00:09'),(1277,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:01:09','2023-07-22 23:01:09'),(1278,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:02:09','2023-07-22 23:02:09'),(1279,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:03:09','2023-07-22 23:03:09'),(1280,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:04:09','2023-07-22 23:04:09'),(1281,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:05:09','2023-07-22 23:05:09'),(1282,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:06:09','2023-07-22 23:06:09'),(1283,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:07:09','2023-07-22 23:07:09'),(1284,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:08:09','2023-07-22 23:08:09'),(1285,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:09:09','2023-07-22 23:09:09'),(1286,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:10:09','2023-07-22 23:10:09'),(1287,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:11:09','2023-07-22 23:11:09'),(1288,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:12:09','2023-07-22 23:12:09'),(1289,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:13:09','2023-07-22 23:13:09'),(1290,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:14:09','2023-07-22 23:14:09'),(1291,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:15:09','2023-07-22 23:15:09'),(1292,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:16:10','2023-07-22 23:16:10'),(1293,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:17:09','2023-07-22 23:17:09'),(1294,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:18:10','2023-07-22 23:18:10'),(1295,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:19:10','2023-07-22 23:19:10'),(1296,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:20:09','2023-07-22 23:20:09'),(1297,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:21:09','2023-07-22 23:21:09'),(1298,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:22:09','2023-07-22 23:22:09'),(1299,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:23:09','2023-07-22 23:23:09'),(1300,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:24:09','2023-07-22 23:24:09'),(1301,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:25:09','2023-07-22 23:25:09'),(1302,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:26:09','2023-07-22 23:26:09'),(1303,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:27:09','2023-07-22 23:27:09'),(1304,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:28:09','2023-07-22 23:28:09'),(1305,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:29:09','2023-07-22 23:29:09'),(1306,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:30:09','2023-07-22 23:30:09'),(1307,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:31:09','2023-07-22 23:31:09'),(1308,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:32:09','2023-07-22 23:32:09'),(1309,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:33:09','2023-07-22 23:33:09'),(1310,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:34:09','2023-07-22 23:34:09'),(1311,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:35:09','2023-07-22 23:35:09'),(1312,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:36:09','2023-07-22 23:36:09'),(1313,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:37:09','2023-07-22 23:37:09'),(1314,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:38:09','2023-07-22 23:38:09'),(1315,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:39:09','2023-07-22 23:39:09'),(1316,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:40:09','2023-07-22 23:40:09'),(1317,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:41:09','2023-07-22 23:41:09'),(1318,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:42:09','2023-07-22 23:42:09'),(1319,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:43:09','2023-07-22 23:43:09'),(1320,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:44:10','2023-07-22 23:44:10'),(1321,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:45:09','2023-07-22 23:45:09'),(1322,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:46:09','2023-07-22 23:46:09'),(1323,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:47:10','2023-07-22 23:47:10'),(1324,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:48:10','2023-07-22 23:48:10'),(1325,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:49:09','2023-07-22 23:49:09'),(1326,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:50:09','2023-07-22 23:50:09'),(1327,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:51:09','2023-07-22 23:51:09'),(1328,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:52:09','2023-07-22 23:52:09'),(1329,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:53:09','2023-07-22 23:53:09'),(1330,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:54:09','2023-07-22 23:54:09'),(1331,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:55:09','2023-07-22 23:55:09'),(1332,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:56:10','2023-07-22 23:56:10'),(1333,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:57:10','2023-07-22 23:57:10'),(1334,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:58:09','2023-07-22 23:58:09'),(1335,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 23:59:09','2023-07-22 23:59:09'),(1336,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:00:09','2023-07-23 00:00:09'),(1337,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:01:09','2023-07-23 00:01:09'),(1338,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:02:09','2023-07-23 00:02:09'),(1339,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:03:09','2023-07-23 00:03:09'),(1340,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:04:09','2023-07-23 00:04:09'),(1341,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:05:09','2023-07-23 00:05:09'),(1342,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:06:09','2023-07-23 00:06:09'),(1343,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:07:09','2023-07-23 00:07:09'),(1344,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:08:09','2023-07-23 00:08:09'),(1345,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:09:09','2023-07-23 00:09:09'),(1346,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:10:09','2023-07-23 00:10:09'),(1347,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:11:09','2023-07-23 00:11:09'),(1348,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:12:09','2023-07-23 00:12:09'),(1349,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:13:09','2023-07-23 00:13:09'),(1350,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:14:09','2023-07-23 00:14:09'),(1351,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:15:09','2023-07-23 00:15:09'),(1352,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:16:09','2023-07-23 00:16:09'),(1353,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:17:10','2023-07-23 00:17:10'),(1354,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:18:10','2023-07-23 00:18:10'),(1355,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:19:10','2023-07-23 00:19:10'),(1356,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:20:09','2023-07-23 00:20:09'),(1357,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:21:09','2023-07-23 00:21:09'),(1358,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:22:09','2023-07-23 00:22:09'),(1359,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:23:09','2023-07-23 00:23:09'),(1360,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:24:09','2023-07-23 00:24:09'),(1361,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:25:09','2023-07-23 00:25:09'),(1362,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:26:09','2023-07-23 00:26:09'),(1363,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:27:10','2023-07-23 00:27:10'),(1364,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:28:10','2023-07-23 00:28:10'),(1365,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:29:10','2023-07-23 00:29:10'),(1366,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:30:10','2023-07-23 00:30:10'),(1367,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:31:10','2023-07-23 00:31:10'),(1368,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:32:10','2023-07-23 00:32:10'),(1369,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:33:10','2023-07-23 00:33:10'),(1370,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:34:10','2023-07-23 00:34:10'),(1371,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:35:10','2023-07-23 00:35:10'),(1372,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:36:10','2023-07-23 00:36:10'),(1373,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:37:10','2023-07-23 00:37:10'),(1374,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:38:10','2023-07-23 00:38:10'),(1375,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:39:10','2023-07-23 00:39:10'),(1376,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:40:10','2023-07-23 00:40:10'),(1377,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:41:10','2023-07-23 00:41:10'),(1378,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:42:09','2023-07-23 00:42:09'),(1379,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:43:10','2023-07-23 00:43:10'),(1380,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:44:10','2023-07-23 00:44:10'),(1381,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:45:09','2023-07-23 00:45:09'),(1382,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:46:10','2023-07-23 00:46:10'),(1383,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:47:10','2023-07-23 00:47:10'),(1384,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:48:09','2023-07-23 00:48:09'),(1385,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:49:10','2023-07-23 00:49:10'),(1386,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:50:09','2023-07-23 00:50:09'),(1387,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:51:09','2023-07-23 00:51:09'),(1388,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:52:10','2023-07-23 00:52:10'),(1389,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:53:09','2023-07-23 00:53:09'),(1390,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:54:09','2023-07-23 00:54:09'),(1391,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:55:09','2023-07-23 00:55:09'),(1392,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:56:10','2023-07-23 00:56:10'),(1393,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:57:10','2023-07-23 00:57:10'),(1394,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:58:10','2023-07-23 00:58:10'),(1395,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 00:59:10','2023-07-23 00:59:10'),(1396,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:00:10','2023-07-23 01:00:10'),(1397,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:01:10','2023-07-23 01:01:10'),(1398,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:02:10','2023-07-23 01:02:10'),(1399,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:03:10','2023-07-23 01:03:10'),(1400,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:04:10','2023-07-23 01:04:10'),(1401,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:05:10','2023-07-23 01:05:10'),(1402,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:06:10','2023-07-23 01:06:10'),(1403,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:07:10','2023-07-23 01:07:10'),(1404,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:08:10','2023-07-23 01:08:10'),(1405,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:09:10','2023-07-23 01:09:10');
INSERT INTO `system_event_logs` VALUES (1406,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:10:10','2023-07-23 01:10:10'),(1407,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:11:10','2023-07-23 01:11:10'),(1408,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:12:10','2023-07-23 01:12:10'),(1409,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:13:10','2023-07-23 01:13:10'),(1410,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:14:10','2023-07-23 01:14:10'),(1411,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:15:10','2023-07-23 01:15:10'),(1412,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:16:10','2023-07-23 01:16:10'),(1413,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:17:10','2023-07-23 01:17:10');
/*!40000 ALTER TABLE `system_event_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_files`
--
DROP TABLE IF EXISTS `system_files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_files` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`disk_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`file_size` int NOT NULL,
`content_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`field` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`attachment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`attachment_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_public` tinyint(1) NOT NULL DEFAULT '1',
`sort_order` int DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `system_files_field_index` (`field`),
KEY `system_files_attachment_id_index` (`attachment_id`),
KEY `system_files_attachment_type_index` (`attachment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_files`
--
LOCK TABLES `system_files` WRITE;
/*!40000 ALTER TABLE `system_files` DISABLE KEYS */;
INSERT INTO `system_files` VALUES (1,'64be774a5cb5f092489372.png','Component 3.png',1667719,'image/png',NULL,NULL,'images','1','TPS\\Birzha\\Models\\Product',1,1,'2023-07-24 08:06:18','2023-07-24 08:06:33'),(2,'64be7a296da4f399204016.png','Component 4.png',304093,'image/png',NULL,NULL,'images','2','TPS\\Birzha\\Models\\Product',1,2,'2023-07-24 08:18:33','2023-07-24 08:18:36'),(3,'64be7cbaa8058739493652.png','Component 2.png',1406299,'image/png',NULL,NULL,'images','1','TPS\\Birzha\\Models\\Product',1,3,'2023-07-24 08:29:30','2023-07-24 08:29:42'),(4,'64be7cc5168ce822933659.png','Component 4.png',304093,'image/png',NULL,NULL,'images','1','TPS\\Birzha\\Models\\Product',1,4,'2023-07-24 08:29:41','2023-07-24 08:29:42'),(5,'64be7cd04e15e857575938.png','Component 3.png',1667719,'image/png',NULL,NULL,'images','2','TPS\\Birzha\\Models\\Product',1,5,'2023-07-24 08:29:52','2023-07-24 08:29:53'),(6,'64be910ca3fcb506396978.png','Component 6.png',1549727,'image/png',NULL,NULL,'images','3','TPS\\Birzha\\Models\\Product',1,6,'2023-07-24 09:56:12','2023-07-24 09:56:14');
/*!40000 ALTER TABLE `system_files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_mail_layouts`
--
DROP TABLE IF EXISTS `system_mail_layouts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_mail_layouts` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content_html` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`content_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`content_css` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`is_locked` tinyint(1) NOT NULL DEFAULT '0',
`options` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_mail_layouts`
--
LOCK TABLES `system_mail_layouts` WRITE;
/*!40000 ALTER TABLE `system_mail_layouts` DISABLE KEYS */;
/*!40000 ALTER TABLE `system_mail_layouts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_mail_partials`
--
DROP TABLE IF EXISTS `system_mail_partials`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_mail_partials` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content_html` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`content_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`is_custom` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_mail_partials`
--
LOCK TABLES `system_mail_partials` WRITE;
/*!40000 ALTER TABLE `system_mail_partials` DISABLE KEYS */;
/*!40000 ALTER TABLE `system_mail_partials` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_mail_templates`
--
DROP TABLE IF EXISTS `system_mail_templates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_mail_templates` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`subject` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`content_html` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`content_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`layout_id` int DEFAULT NULL,
`is_custom` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `system_mail_templates_layout_id_index` (`layout_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_mail_templates`
--
LOCK TABLES `system_mail_templates` WRITE;
/*!40000 ALTER TABLE `system_mail_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `system_mail_templates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_parameters`
--
DROP TABLE IF EXISTS `system_parameters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_parameters` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`namespace` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`group` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`item` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `item_index` (`namespace`,`group`,`item`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_parameters`
--
LOCK TABLES `system_parameters` WRITE;
/*!40000 ALTER TABLE `system_parameters` DISABLE KEYS */;
INSERT INTO `system_parameters` VALUES (1,'system','update','count','10'),(2,'cms','theme','active','\"gurlushyk\"'),(3,'system','update','retry','1690258246');
/*!40000 ALTER TABLE `system_parameters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_plugin_history`
--
DROP TABLE IF EXISTS `system_plugin_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_plugin_history` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`version` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`detail` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `system_plugin_history_code_index` (`code`),
KEY `system_plugin_history_type_index` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=1056 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_plugin_history`
--
LOCK TABLES `system_plugin_history` WRITE;
/*!40000 ALTER TABLE `system_plugin_history` DISABLE KEYS */;
INSERT INTO `system_plugin_history` VALUES (17,'JanVince.SmallContactForm','script','1.0.0','scf_tables.php','2023-06-09 13:21:42'),(18,'JanVince.SmallContactForm','comment','1.0.0','First version of Small Contact Form plugin','2023-06-09 13:21:42'),(19,'JanVince.SmallContactForm','comment','1.0.1','Fix form hiding after successful send','2023-06-09 13:21:42'),(20,'JanVince.SmallContactForm','comment','1.0.1','Fix in README.md','2023-06-09 13:21:42'),(21,'JanVince.SmallContactForm','comment','1.0.2','Fix some typos and add LICENCE file (thanks Szabó Gergő)','2023-06-09 13:21:42'),(22,'JanVince.SmallContactForm','comment','1.1.0','Added function to delete records in Messages list','2023-06-09 13:21:42'),(23,'JanVince.SmallContactForm','comment','1.1.0','Added permission to delete records','2023-06-09 13:21:42'),(24,'JanVince.SmallContactForm','comment','1.2.0','Added dashboard report widgets (Stats and New messages)','2023-06-09 13:21:42'),(25,'JanVince.SmallContactForm','comment','1.2.1','Mail templates now render values with {{ values|raw }}','2023-06-09 13:21:42'),(26,'JanVince.SmallContactForm','comment','1.2.2','Mail templates convert new lines to <br> with {{ values|raw|nl2br }}','2023-06-09 13:21:42'),(27,'JanVince.SmallContactForm','comment','1.2.3','Fields mapping moved to separate tab *Columns mapping*','2023-06-09 13:21:42'),(28,'JanVince.SmallContactForm','comment','1.2.4','Updated README.md with assets usage example','2023-06-09 13:21:42'),(29,'JanVince.SmallContactForm','script','1.2.5','scf_tables_02.php','2023-06-09 13:21:42'),(30,'JanVince.SmallContactForm','comment','1.2.5','Added IP protection function (limit too many submits from one IP address)','2023-06-09 13:21:42'),(31,'JanVince.SmallContactForm','comment','1.2.5','And Messages list column to show senders IP address (invisible by default)','2023-06-09 13:21:42'),(32,'JanVince.SmallContactForm','comment','1.2.6','Fixed IP protection error message','2023-06-09 13:21:42'),(33,'JanVince.SmallContactForm','comment','1.2.7','Changed remote_ip column type to string','2023-06-09 13:21:42'),(34,'JanVince.SmallContactForm','comment','1.2.8','Added option to use placeholders instead of labels','2023-06-09 13:21:42'),(35,'JanVince.SmallContactForm','comment','1.3.0','Added translation support for Rainlab Translate plugin','2023-06-09 13:21:42'),(36,'JanVince.SmallContactForm','comment','1.3.0','Fixed some typos','2023-06-09 13:21:42'),(37,'JanVince.SmallContactForm','comment','1.3.1','Added default value for getTranslated() method','2023-06-09 13:21:42'),(38,'JanVince.SmallContactForm','comment','1.3.2','Added custom send button wrapper class','2023-06-09 13:21:42'),(39,'JanVince.SmallContactForm','comment','1.4.0','Added redirect option after successful submit (internal and external URL)','2023-06-09 13:21:42'),(40,'JanVince.SmallContactForm','comment','1.4.1','Minor UI fix (thanks Szabó Gergő)','2023-06-09 13:21:42'),(41,'JanVince.SmallContactForm','comment','1.4.2','Added support for default translated mail templates (Czech and English for now)','2023-06-09 13:21:42'),(42,'JanVince.SmallContactForm','comment','1.4.3','Fixed translation of mail templates description in Settings > Mail templates','2023-06-09 13:21:42'),(43,'JanVince.SmallContactForm','comment','1.4.4','Fixed array of enabledLocales','2023-06-09 13:21:42'),(44,'JanVince.SmallContactForm','comment','1.4.5','Fixed email template check','2023-06-09 13:21:42'),(45,'JanVince.SmallContactForm','comment','1.4.5','Added default EN locale to enabled locales array','2023-06-09 13:21:42'),(46,'JanVince.SmallContactForm','comment','1.4.6','Removed field type restriction for Fields mapping','2023-06-09 13:21:42'),(47,'JanVince.SmallContactForm','comment','1.4.7','Removed hardcoded date format for created_at column in messages list, updated README and added hungarian language (thanks Szabó Gergő for all this)','2023-06-09 13:21:42'),(48,'JanVince.SmallContactForm','comment','1.4.8','Changes to allow multiple use of contact form (form and message blocks has now unique IDs)','2023-06-09 13:21:42'),(49,'JanVince.SmallContactForm','comment','1.4.8','Added checkbox field type','2023-06-09 13:21:42'),(50,'JanVince.SmallContactForm','comment','1.4.8','Scoreboard last message time format (thanks Szabó Gergő)','2023-06-09 13:21:42'),(51,'JanVince.SmallContactForm','comment','1.4.9','Added scoreboard button to quickly open form settings','2023-06-09 13:21:42'),(52,'JanVince.SmallContactForm','comment','1.4.10','Fixed typo in lang filename','2023-06-09 13:21:42'),(53,'JanVince.SmallContactForm','comment','1.4.11','Added \"fieldsDetails\" array to all email templates to have access to field labels, types and more','2023-06-09 13:21:42'),(54,'JanVince.SmallContactForm','comment','1.4.11','Updated default autoreply mail templates to include fieldsDetail array','2023-06-09 13:21:42'),(55,'JanVince.SmallContactForm','comment','1.4.11','Added function to detect non-defined fields in sent data','2023-06-09 13:21:42'),(56,'JanVince.SmallContactForm','comment','1.4.11','Updated README.md file','2023-06-09 13:21:42'),(57,'JanVince.SmallContactForm','comment','1.5.0','Added some component hacking options (override autoreply and notification emails and template, disable fields)','2023-06-09 13:21:42'),(58,'JanVince.SmallContactForm','comment','1.5.0','Fixed some typos','2023-06-09 13:21:42'),(59,'JanVince.SmallContactForm','comment','1.5.0','Updated README.md file','2023-06-09 13:21:42'),(60,'JanVince.SmallContactForm','comment','1.5.1','Fixed flash message visibility when where are some errors','2023-06-09 13:21:42'),(61,'JanVince.SmallContactForm','comment','1.5.2','Fixed flash error for IP protection visibility','2023-06-09 13:21:42'),(62,'JanVince.SmallContactForm','comment','1.5.3','Added option for notification emails to have FROM address set from contact form email field','2023-06-09 13:21:42'),(63,'JanVince.SmallContactForm','comment','1.5.4','Added option to mark selected messages as read','2023-06-09 13:21:42'),(64,'JanVince.SmallContactForm','comment','1.5.5','Changed JSON type for repeater DB column','2023-06-09 13:21:42'),(65,'JanVince.SmallContactForm','comment','1.5.6','Removed value attribute in textarea field','2023-06-09 13:21:42'),(66,'JanVince.SmallContactForm','comment','1.5.7','Added component alias to id attributes for multi-form usage','2023-06-09 13:21:42'),(67,'JanVince.SmallContactForm','comment','1.5.8','Fixed typo in lang files','2023-06-09 13:21:42'),(68,'JanVince.SmallContactForm','comment','1.5.9','Added direct link to messages list from dashboard widget','2023-06-09 13:21:42'),(69,'JanVince.SmallContactForm','comment','1.6.0','Added Google reCAPTCHA validation','2023-06-09 13:21:42'),(70,'JanVince.SmallContactForm','comment','1.6.1','Changed All messages large indicator to New messages in scoreboard','2023-06-09 13:21:42'),(71,'JanVince.SmallContactForm','comment','1.6.2','Removed reCAPTCHA hard coded locale string (thx kuzyk). Added settings option to allow locale detection.','2023-06-09 13:21:42'),(72,'JanVince.SmallContactForm','comment','1.7.0','Added option to specify <label> custom CSS class','2023-06-09 13:21:42'),(73,'JanVince.SmallContactForm','comment','1.7.1','Fixed \'text_preview\' list field type truncate function (thx kuzyk)','2023-06-09 13:21:42'),(74,'JanVince.SmallContactForm','comment','1.7.2','Changed count() to mb_strlen() function in custom list type definition','2023-06-09 13:21:42'),(75,'JanVince.SmallContactForm','comment','1.8.0','Added option to disable built-in browser form validation. Added class \'is-invalid\' for fields with error (as used Bootstrap 4).','2023-06-09 13:21:42'),(76,'JanVince.SmallContactForm','comment','1.9.0','Form registered as Page snippet to be used in Rainlab.Page content (thx BtzLeon)','2023-06-09 13:21:42'),(77,'JanVince.SmallContactForm','comment','1.9.1','REPLY TO address is now used for notification email by default. You can still force FROM address to be used (but this is not supported by all email systems!).','2023-06-09 13:21:42'),(78,'JanVince.SmallContactForm','comment','1.9.2','Fix problem when ReCaptcha field was logged as an undefined field to system log (thx LukeTowers)','2023-06-09 13:21:42'),(79,'JanVince.SmallContactForm','comment','1.9.3','Fixed label \'for\' attribute to point to input ID (as required by specification)','2023-06-09 13:21:42'),(80,'JanVince.SmallContactForm','comment','1.10.0','Added form component hacks group (now only for disabling notification emails, more will come)','2023-06-09 13:21:42'),(81,'JanVince.SmallContactForm','script','1.11.0','scf_tables_03.php','2023-06-09 13:21:42'),(82,'JanVince.SmallContactForm','comment','1.11.0','Added form fields alias and description (can be used to distinquish between more forms or to save extra data). More info in README file.','2023-06-09 13:21:42'),(83,'JanVince.SmallContactForm','comment','1.11.1','Added form description field to message preview','2023-06-09 13:21:42'),(84,'JanVince.SmallContactForm','comment','1.12.0','Added Russian translation (thank Dinver)','2023-06-09 13:21:42'),(85,'JanVince.SmallContactForm','comment','1.12.1','Chanded input custom list column type for switch to prevent interaction with toolbar JS','2023-06-09 13:21:42'),(86,'JanVince.SmallContactForm','comment','1.13.1','Added form_alias and form_description variables to email (notification and autoreply) templates','2023-06-09 13:21:42'),(87,'JanVince.SmallContactForm','comment','1.13.2','Disabled placeholder attribute for checkbox','2023-06-09 13:21:42'),(88,'JanVince.SmallContactForm','comment','1.14.0','Added option to export messages list','2023-06-09 13:21:42'),(89,'JanVince.SmallContactForm','comment','1.14.1','Added permissions to export messages list','2023-06-09 13:21:42'),(90,'JanVince.SmallContactForm','comment','1.15.0','Added Privacy tab and new option to disable sent messages saving','2023-06-09 13:21:42'),(91,'JanVince.SmallContactForm','comment','1.15.1','Fixed settings fields trigger','2023-06-09 13:21:42'),(92,'JanVince.SmallContactForm','comment','1.15.2','Fixed default values for recaptcha settings to false','2023-06-09 13:21:42'),(93,'JanVince.SmallContactForm','comment','1.15.3','Allowed combination of disabled messages saving and allowed passive antispam','2023-06-09 13:21:42'),(94,'JanVince.SmallContactForm','comment','1.16.0','Added option to have more than one notification email address','2023-06-09 13:21:42'),(95,'JanVince.SmallContactForm','comment','1.16.1','Fixed missing form data in autoreply templates. Updated default autoreply messages.','2023-06-09 13:21:42'),(96,'JanVince.SmallContactForm','comment','1.16.2','Updated hungarian translation (thx gergo85)','2023-06-09 13:21:42'),(97,'JanVince.SmallContactForm','comment','1.16.3','Fixed checkbox validation and validation state','2023-06-09 13:21:42'),(98,'JanVince.SmallContactForm','comment','1.17.0','Added Slovak translation (thx vosco88)','2023-06-09 13:21:42'),(99,'JanVince.SmallContactForm','comment','1.18.0','Added French translations (thx FelixINX)','2023-06-09 13:21:42'),(100,'JanVince.SmallContactForm','comment','1.19.0','Added custom validation fields (thanks petr-vytlacil for help)','2023-06-09 13:21:42'),(101,'JanVince.SmallContactForm','comment','1.20.0','Added dropdown field type','2023-06-09 13:21:42'),(102,'JanVince.SmallContactForm','comment','1.21.0','Form fields repeater is now translatable','2023-06-09 13:21:42'),(103,'JanVince.SmallContactForm','comment','1.22.0','Fixed multiple flash messages shown','2023-06-09 13:21:42'),(104,'JanVince.SmallContactForm','comment','1.23.0','When placeholders are used, labels are now still present and only hidden by style attribute','2023-06-09 13:21:42'),(105,'JanVince.SmallContactForm','comment','1.24.0','Added option to set custom reCaptcha wrapper CSS class','2023-06-09 13:21:42'),(106,'JanVince.SmallContactForm','comment','1.25.0','Added polish (thanks Magiczne) and spanish (thanks codibit) translations','2023-06-09 13:21:42'),(107,'JanVince.SmallContactForm','comment','1.30.0','Added invisible reCaptcha','2023-06-09 13:21:42'),(108,'JanVince.SmallContactForm','comment','1.30.1','Fixed reCaptcha scripts load','2023-06-09 13:21:42'),(109,'JanVince.SmallContactForm','comment','1.31.2','Fixed AJAX redirect when validation error (thanks zlobec)','2023-06-09 13:21:42'),(110,'JanVince.SmallContactForm','comment','1.31.3','Fixed reCaptcha checkbox version not showing up on older installations','2023-06-09 13:21:42'),(111,'JanVince.SmallContactForm','comment','1.31.4','Fixed unnecessary refresh after Ajax send (thanks cregx)','2023-06-09 13:21:42'),(112,'JanVince.SmallContactForm','comment','1.32.0','Added all settings overrides as regular component properties (can be used to override some form settings in multi-form setup)','2023-06-09 13:21:42'),(113,'JanVince.SmallContactForm','comment','1.32.0','Updated documentation','2023-06-09 13:21:42'),(114,'JanVince.SmallContactForm','comment','1.32.1','Fixed test on empty values if some fields are disabled','2023-06-09 13:21:42'),(115,'JanVince.SmallContactForm','comment','1.40.0','Added validation rule custom_not_regex (inverse of default regex validation rule)','2023-06-09 13:21:42'),(116,'JanVince.SmallContactForm','comment','1.40.0','Added form container with ID and action attribute with this hash URL (to automatically jump to form after nonAJAX send or refresh)','2023-06-09 13:21:42'),(117,'JanVince.SmallContactForm','comment','1.40.1','Fixed notification From name to be correctly set from component properties (thanks @pavsid)','2023-06-09 13:21:42'),(118,'JanVince.SmallContactForm','comment','1.41.0','Added component redirect properties and allow dynamic redirect URL as a component markup parameter. More info in README file.','2023-06-09 13:21:42'),(119,'JanVince.SmallContactForm','comment','1.41.0','Removed hard coded form hash URL (#scf-[form-alias]) as this can be now easily added with redirect options.','2023-06-09 13:21:42'),(120,'JanVince.SmallContactForm','comment','1.41.1','Set redirect URL property default value to null.','2023-06-09 13:21:42'),(121,'JanVince.SmallContactForm','comment','1.42.0','Added Google Analytics events after form is successfully sent','2023-06-09 13:21:42'),(122,'JanVince.SmallContactForm','comment','1.42.0','Do not populate redirection field code when redirection is not allowed','2023-06-09 13:21:42'),(123,'JanVince.SmallContactForm','comment','1.43.0','Rewritten component partials. No action is needed if you use plugin as is. But if you override component partials test them before update!','2023-06-09 13:21:42'),(124,'JanVince.SmallContactForm','comment','1.44.0','Added component properties to override notification and autoreply email subject (with support for Twig variables)','2023-06-09 13:21:42'),(125,'JanVince.SmallContactForm','comment','1.45.0','Added German translation (thanks NiklasDah)','2023-06-09 13:21:42'),(126,'JanVince.SmallContactForm','comment','1.46.0','Fixed backend validation for reCaptcha invisible','2023-06-09 13:21:42'),(127,'JanVince.SmallContactForm','comment','1.47.0','Added Custom code and Custom content field types','2023-06-09 13:21:42'),(128,'JanVince.SmallContactForm','comment','1.47.0','Updated README','2023-06-09 13:21:42'),(129,'JanVince.SmallContactForm','comment','1.47.1','Fixed typo in README (wrong component redirection parameter name)','2023-06-09 13:21:42'),(130,'JanVince.SmallContactForm','comment','1.47.2','Fixed checkbox validation (thanks Chocofede)','2023-06-09 13:21:42'),(131,'JanVince.SmallContactForm','comment','1.47.3','Removed unnecessarry name attribute from custom_content field','2023-06-09 13:21:42'),(132,'JanVince.SmallContactForm','comment','1.47.4','Fixed typo in field attributes','2023-06-09 13:21:42'),(133,'JanVince.SmallContactForm','comment','1.48.0','Added option to set ReplyTo email address for autoreply emails','2023-06-09 13:21:42'),(134,'JanVince.SmallContactForm','comment','1.48.1','Fixed autoreply email addresses checks','2023-06-09 13:21:42'),(135,'JanVince.SmallContactForm','comment','1.48.2','Fixed empty ReplyTo field error','2023-06-09 13:21:42'),(136,'JanVince.SmallContactForm','comment','1.48.3','Fixed getFieldHtmlCode method (thanks sdlb)','2023-06-09 13:21:42'),(137,'JanVince.SmallContactForm','comment','1.49.0','Fixed missing description and redirect url after AJAX calls','2023-06-09 13:21:42'),(138,'JanVince.SmallContactForm','comment','1.49.0','Fields forms in backend are now collapsed by default for better visibility','2023-06-09 13:21:42'),(139,'JanVince.SmallContactForm','script','1.50.0','scf_tables_04.php','2023-06-09 13:21:42'),(140,'JanVince.SmallContactForm','comment','1.50.0','Auto store form request URL in DB (is available also in Mail templates)','2023-06-09 13:21:42'),(141,'JanVince.SmallContactForm','comment','1.50.1','Removed unnecessarry debug log','2023-06-09 13:21:42'),(142,'JanVince.SmallContactForm','comment','1.51.0','Added support for (one or many) file uploads','2023-06-09 13:21:42'),(143,'JanVince.SmallContactForm','comment','1.51.0','Fixed AJAX validation','2023-06-09 13:21:42'),(144,'JanVince.SmallContactForm','comment','1.51.0','Updated README','2023-06-09 13:21:42'),(145,'JanVince.SmallContactForm','comment','1.51.1','Removed uploads array from default fields sent to autoreply template','2023-06-09 13:21:42'),(146,'JanVince.SmallContactForm','comment','1.51.2','Fixed uploads field in email messages','2023-06-09 13:21:42'),(147,'JanVince.SmallContactForm','script','1.51.3','scf_tables_05.php','2023-06-09 13:21:42'),(148,'JanVince.SmallContactForm','comment','1.51.3','Changed size of database column url (thanks zlobec)','2023-06-09 13:21:42'),(149,'JanVince.SmallContactForm','comment','1.51.4','Fixed passive antispam delay validation','2023-06-09 13:21:42'),(150,'JanVince.SmallContactForm','comment','1.52.0','Changed reCaptcha validation to work with allow_url_fopen disabled','2023-06-09 13:21:42'),(151,'JanVince.SmallContactForm','comment','1.52.1','Fixed project git files','2023-06-09 13:21:42'),(152,'JanVince.SmallContactForm','comment','1.53.0','Added option to choose tag for Analytics event (analytics.js (oridinal) or gtag.js)','2023-06-09 13:21:42'),(153,'JanVince.SmallContactForm','comment','1.54.0','Added option to add notes for form','2023-06-09 13:21:42'),(154,'JanVince.SmallContactForm','script','1.55.0','scf_tables_06.php','2023-06-09 13:21:42'),(155,'JanVince.SmallContactForm','comment','1.55.0','Form notes will be saved to database with message','2023-06-09 13:21:42'),(156,'JanVince.SmallContactForm','comment','1.55.1','Fixed migrations','2023-06-09 13:21:42'),(157,'JanVince.SmallContactForm','comment','1.55.2','Added reCaptcha check (thanks @kavishdahekar)','2023-06-09 13:21:42'),(158,'JanVince.SmallContactForm','comment','1.55.3','Fixed PHP8 compatibility (thanks @kavishdahekar)','2023-06-09 13:21:42'),(159,'JanVince.SmallContactForm','comment','1.55.4','Removed unnecessary side panel (thanks @TimFoerster)','2023-06-09 13:21:42'),(160,'JanVince.SmallContactForm','comment','1.55.5','Fixed gtag event code after form sent','2023-06-09 13:21:42'),(161,'JanVince.SmallContactForm','comment','1.55.6','Fixed yaml for OC3 installation','2023-06-09 13:21:42'),(162,'JanVince.SmallContactForm','comment','1.55.7','Removed optional parametr in sendAutoreplyEmail (thanks @TimFoerster)','2023-06-09 13:21:42'),(163,'JanVince.SmallContactForm','comment','1.56.0','Added Finnish language (thanks @mediaclinic)','2023-06-09 13:21:42'),(164,'JanVince.SmallContactForm','comment','1.56.1','Fixed XSS vulnerability (thanks lex0r)','2023-06-09 13:21:42'),(165,'JanVince.SmallContactForm','comment','1.57.0','Updated OC3 compatibility','2023-06-09 13:21:42'),(166,'JanVince.SmallContactForm','comment','1.58.0','Rewritten recaptcha implementation','2023-06-09 13:21:42'),(167,'JanVince.SmallContactForm','comment','1.59.0','Simplified recapchta code','2023-06-09 13:21:42'),(168,'JanVince.SmallContactForm','comment','1.59.1','Updated recaptcha invisible to support more forms on page','2023-06-09 13:21:42'),(169,'JanVince.SmallContactForm','comment','1.59.2','Fix for support more forms on page','2023-06-09 13:21:42'),(170,'JanVince.SmallContactForm','comment','1.60.0','Fixed OCv2 compatibility (thanks @LZaplata)','2023-06-09 13:21:42'),(171,'JanVince.SmallContactForm','comment','1.60.1','Fixed OCv1 and OCv2 compatibility','2023-06-09 13:21:42'),(172,'JanVince.SmallContactForm','comment','1.60.2','Fixed JS code for multiple form usage','2023-06-09 13:21:42'),(173,'JanVince.SmallContactForm','comment','1.61.0','Fixed custom validation rule (thanks @SamBrishes)','2023-06-09 13:21:42'),(174,'JanVince.SmallContactForm','comment','1.62.0','Fixed error messages translation (thanks @massimomegistus)','2023-06-09 13:21:42'),(175,'JanVince.SmallContactForm','comment','1.63.0','Added option to disable PLAIN post when AJAX is enabled (thanks @TimFoerster)','2023-06-09 13:21:42'),(176,'JanVince.SmallContactForm','comment','1.63.1','Fixed reCaptcha script','2023-06-09 13:21:42'),(177,'JanVince.SmallContactForm','comment','1.63.2','Better invisible reCaptcha implementation','2023-06-09 13:21:42'),(178,'JanVince.SmallContactForm','comment','1.63.3','Fixed valid HTML for placeholders','2023-06-09 13:21:42'),(179,'Martin.Forms','script','1.0.0','create_records_table.php','2023-06-09 13:21:42'),(180,'Martin.Forms','comment','1.0.0','First version of Magic Forms','2023-06-09 13:21:42'),(181,'Martin.Forms','comment','1.0.1','Added CSRF protection','2023-06-09 13:21:42'),(182,'Martin.Forms','comment','1.1.0','Added reCAPTCHA','2023-06-09 13:21:42'),(183,'Martin.Forms','comment','1.1.1','Fix when using reCAPTCHA + allowed fields','2023-06-09 13:21:42'),(184,'Martin.Forms','script','1.1.2','add_group_field.php','2023-06-09 13:21:43'),(185,'Martin.Forms','comment','1.1.2','Filter forms records','2023-06-09 13:21:43'),(186,'Martin.Forms','comment','1.1.2','Search inside stored data','2023-06-09 13:21:43'),(187,'Martin.Forms','comment','1.1.2','Organize your forms on custom groups','2023-06-09 13:21:43'),(188,'Martin.Forms','comment','1.2.0','Export stored data in CSV format','2023-06-09 13:21:43'),(189,'Martin.Forms','comment','1.2.1','Auto-response email on form submit','2023-06-09 13:21:43'),(190,'Martin.Forms','comment','1.2.1','Added Turkish language','2023-06-09 13:21:43'),(191,'Martin.Forms','comment','1.2.2','Override notifications and auto-response email subjects','2023-06-09 13:21:43'),(192,'Martin.Forms','comment','1.2.3','New option to reset form after successfully submit','2023-06-09 13:21:43'),(193,'Martin.Forms','comment','1.2.3','Fixed Empty AJAX Form template','2023-06-09 13:21:43'),(194,'Martin.Forms','comment','1.2.3','Support for Translate plugin','2023-06-09 13:21:43'),(195,'Martin.Forms','comment','1.2.3','Added plugin documentation','2023-06-09 13:21:43'),(196,'Martin.Forms','comment','1.2.4','Added detailed reCAPTCHA help','2023-06-09 13:21:43'),(197,'Martin.Forms','comment','1.3.0','AJAX file uploads','2023-06-09 13:21:43'),(198,'Martin.Forms','comment','1.3.1','Added lang pt-br','2023-06-09 13:21:43'),(199,'Martin.Forms','comment','1.3.2','Fixed multiples reCAPTCHAs on same page','2023-06-09 13:21:43'),(200,'Martin.Forms','comment','1.3.3','Fixed record detail page when form data contains an array','2023-06-09 13:21:43'),(201,'Martin.Forms','comment','1.3.3','Updated documentations','2023-06-09 13:21:43'),(202,'Martin.Forms','comment','1.3.4','New \"Anonymize IP\" option','2023-06-09 13:21:43'),(203,'Martin.Forms','comment','1.3.5','New option \"Redirect on successful submit\"','2023-06-09 13:21:43'),(204,'Martin.Forms','comment','1.3.6','French translation','2023-06-09 13:21:43'),(205,'Martin.Forms','comment','1.3.6','Support Translate plugin on reCAPTCHA','2023-06-09 13:21:43'),(206,'Martin.Forms','comment','1.3.6','reCAPTCHA validation enhancements','2023-06-09 13:21:43'),(207,'Martin.Forms','comment','1.3.7','Displaying errors with fields (inline errors)','2023-06-09 13:21:43'),(208,'Martin.Forms','comment','1.3.7','Show uploads as list','2023-06-09 13:21:43'),(209,'Martin.Forms','comment','1.3.8','Fixed handling arrays (radio inputs) in notification email','2023-06-09 13:21:43'),(210,'Martin.Forms','comment','1.3.9','Use custom mail templates','2023-06-09 13:21:43'),(211,'Martin.Forms','comment','1.3.9','Execute custom JavaScript on form success or error','2023-06-09 13:21:43'),(212,'Martin.Forms','comment','1.4.0','Added Events (please, refer to docs) [thanks to therealkevinard]','2023-06-09 13:21:43'),(213,'Martin.Forms','comment','1.4.1','New option \"Reply To\"','2023-06-09 13:21:43'),(214,'Martin.Forms','comment','1.4.2','Escape HTML characters on the view records page [thanks to Andre]','2023-06-09 13:21:43'),(215,'Martin.Forms','comment','1.4.2','New option to sanitize form data (check security docs for more info)','2023-06-09 13:21:43'),(216,'Martin.Forms','comment','1.4.2','Added option to send blind carbon copy in notifications email','2023-06-09 13:21:43'),(217,'Martin.Forms','script','1.4.3','add_unread_field.php','2023-06-09 13:21:43'),(218,'Martin.Forms','comment','1.4.3','Fixes related to October Build 420','2023-06-09 13:21:43'),(219,'Martin.Forms','comment','1.4.3','Added \"Unread Records\" counter','2023-06-09 13:21:43'),(220,'Martin.Forms','comment','1.4.3','Fixed errors when only BCC addresses are supplied','2023-06-09 13:21:43'),(221,'Martin.Forms','comment','1.4.3','New setting \"hide navigation item\"','2023-06-09 13:21:43'),(222,'Martin.Forms','comment','1.4.4','Use custom partials for Success and Error messages','2023-06-09 13:21:43'),(223,'Martin.Forms','comment','1.4.4.1','Fix with notifications emails','2023-06-09 13:21:43'),(224,'Martin.Forms','comment','1.4.5','Mail class code refactoring','2023-06-09 13:21:43'),(225,'Martin.Forms','comment','1.4.5','Access submited data on auto-response email template','2023-06-09 13:21:43'),(226,'Martin.Forms','comment','1.4.5.1','Store form data without escaping unicode [thanks to panakour]','2023-06-09 13:21:43'),(227,'Martin.Forms','comment','1.4.6','New option to skip saving forms data on database.','2023-06-09 13:21:43'),(228,'Martin.Forms','comment','1.4.6','Possibility to change the text on the remove file popup [thanks to ShiroeSama]','2023-06-09 13:21:43'),(229,'Martin.Forms','comment','1.4.6.1','Changed database field from json to text to support MySQL 5.5','2023-06-09 13:21:43'),(230,'Martin.Forms','comment','1.4.7','you can use your form variables on notification mail subject [thanks to Alex360hd]','2023-06-09 13:21:43'),(231,'Martin.Forms','comment','1.4.7','fix custom subject on email template [Thanks to matteotrubini]','2023-06-09 13:21:43'),(232,'Martin.Forms','comment','1.4.7','fix email bug when not storing on db [Thanks JurekRaben]','2023-06-09 13:21:43'),(233,'Martin.Forms','comment','1.4.7','skip url redirect validation [Thanks to EleRam]','2023-06-09 13:21:43'),(234,'Martin.Forms','comment','1.4.8','added GDPR cleanup feature [thanks to Alex360hd]','2023-06-09 13:21:43'),(235,'Martin.Forms','comment','1.4.9','fix on replaceToken function when replacement is null [thanks to leonaze]','2023-06-09 13:21:43'),(236,'Martin.Forms','comment','1.4.9.1','fix a nullable type error on PHP 7.0','2023-06-09 13:21:43'),(237,'Martin.Forms','comment','1.4.9.2','bugfix when a form field array has more than 2 levels of depth','2023-06-09 13:21:43'),(238,'Martin.Forms','comment','1.4.10','improvements related to event functionality','2023-06-09 13:21:43'),(239,'Martin.Forms','comment','1.4.11','added Laravel custom attributes to form validation [thanks to geekfil]','2023-06-09 13:21:43'),(240,'Martin.Forms','comment','1.4.11','updated french translation [thanks to FelixINX]','2023-06-09 13:21:43'),(241,'Martin.Forms','comment','1.4.12','use form variables on auto-response mail subject [thanks to jiargei]','2023-06-09 13:21:43'),(242,'Martin.Forms','comment','1.4.13','pass an array with form errors to JavaScript [thanks to multiwebinc]','2023-06-09 13:21:43'),(243,'Martin.Forms','comment','1.4.14','fixed error with empty auto-response subject','2023-06-09 13:21:43'),(244,'Martin.Forms','comment','1.4.15','enhancements related to saving record and events [thanks to boxxroom]','2023-06-09 13:21:43'),(245,'Martin.Forms','comment','1.4.16','added chinese translation [thanks to everyx]','2023-06-09 13:21:43'),(246,'Martin.Forms','comment','1.4.17','allowing sanitize to work recursively [thanks to multiwebinc]','2023-06-09 13:21:43'),(247,'Martin.Forms','comment','1.4.18','export records enhancements [thanks to Fosphatic]','2023-06-09 13:21:43'),(248,'Martin.Forms','comment','1.4.18','recaptcha locale fix [thanks to MaTToX3]','2023-06-09 13:21:43'),(249,'Martin.Forms','comment','1.4.19','added russian translation [thanks to FlusherDock1]','2023-06-09 13:21:43'),(250,'Martin.Forms','comment','1.4.19','sort records by date fix [thanks to mjauvin]','2023-06-09 13:21:43'),(251,'Martin.Forms','comment','1.4.20','added invisible reCAPTCHA [thanks to mjauvin]','2023-06-09 13:21:43'),(252,'Martin.Forms','comment','1.4.20','new option to set custom date format on emails subject','2023-06-09 13:21:43'),(253,'Martin.Forms','comment','1.5.0','fixes related to October Build 469 [thanks to mjauvin]','2023-06-09 13:21:43'),(254,'Martin.Forms','comment','1.5.0','fix when CSRF check is disabled [thanks to rechik]','2023-06-09 13:21:43'),(255,'Martin.Forms','comment','1.5.0','php linting and cleanup','2023-06-09 13:21:43'),(256,'Martin.Forms','comment','1.5.1','email templates improvemenrs [thanks to mjauvin]','2023-06-09 13:21:43'),(257,'Martin.Forms','comment','1.5.1','added german translation [thanks to Fosphatic]','2023-06-09 13:21:43'),(258,'OFFLINE.CORS','comment','1.0.1','Initial release.','2023-06-09 13:21:43'),(259,'OFFLINE.CORS','comment','1.0.2','Fixed backend settings label (thanks to LukeTowers)','2023-06-09 13:21:43'),(260,'OFFLINE.CORS','comment','1.0.3','Added support for filesystem configuration file / Added plugin to Packagist (https://packagist.org/packages/offline/oc-cors-plugin)','2023-06-09 13:21:43'),(261,'OFFLINE.CORS','comment','1.0.4','Fixed minor bug when running the plugin without custom settings','2023-06-09 13:21:43'),(262,'OFFLINE.CORS','comment','1.0.5','Return proper 204 response code for preflight requests (thanks to @adrian-marinescu-ch on GitHub)','2023-06-09 13:21:43'),(263,'OFFLINE.CORS','comment','1.0.6','Dummy release to sync with Packagist version','2023-06-09 13:21:43'),(264,'OFFLINE.CORS','comment','1.0.7','Optimized compatibility with October v2','2023-06-09 13:21:43'),(265,'OFFLINE.SiteSearch','comment','1.0.1','First version of SiteSearch','2023-06-09 13:21:43'),(266,'OFFLINE.SiteSearch','comment','1.0.2','Added experimental CMS pages results provider','2023-06-09 13:21:43'),(267,'OFFLINE.SiteSearch','comment','1.0.3','Added missing component','2023-06-09 13:21:43'),(268,'OFFLINE.SiteSearch','comment','1.0.4','Added support for RadiantWeb.ProBlog','2023-06-09 13:21:43'),(269,'OFFLINE.SiteSearch','comment','1.0.5','Moved configuration to the backend','2023-06-09 13:21:43'),(270,'OFFLINE.SiteSearch','comment','1.0.6','Fixed hardcoded url in pagination','2023-06-09 13:21:43'),(271,'OFFLINE.SiteSearch','comment','1.0.7','Add function for getting last page number (Thanks to vojtasvoboda)','2023-06-09 13:21:43'),(272,'OFFLINE.SiteSearch','comment','1.0.8','Add cs_CZ locale (Thanks to vojtasvoboda)','2023-06-09 13:21:43'),(273,'OFFLINE.SiteSearch','comment','1.0.9','Added support for ArrizalAmin.Portfolio plugin','2023-06-09 13:21:43'),(274,'OFFLINE.SiteSearch','comment','1.0.10','Removed unused component','2023-06-09 13:21:43'),(275,'OFFLINE.SiteSearch','comment','1.1.0','Added support for translated contents in RainLab.Pages, ArrizalAmin.Portfolio and RadiantWeb.ProBlog','2023-06-09 13:21:43'),(276,'OFFLINE.SiteSearch','comment','1.1.0','Fixed bug where RainLab.Pages results were displayed twice','2023-06-09 13:21:43'),(277,'OFFLINE.SiteSearch','comment','1.1.0','Honor disabled plugins setting','2023-06-09 13:21:43'),(278,'OFFLINE.SiteSearch','comment','1.1.0','Generate absolute URLs in search results by default','2023-06-09 13:21:43'),(279,'OFFLINE.SiteSearch','comment','1.1.1','Added optimized siteSearchInclude component for cms pages search','2023-06-09 13:21:43'),(280,'OFFLINE.SiteSearch','comment','1.1.2','Fixed backend permissions','2023-06-09 13:21:43'),(281,'OFFLINE.SiteSearch','comment','1.1.3','Added ru_RU locale (Thanks to mokeev1995)','2023-06-09 13:21:43'),(282,'OFFLINE.SiteSearch','comment','1.2.1','Added support for Feegleweb.Octoshop (Thanks to billyzduke)','2023-06-09 13:21:43'),(283,'OFFLINE.SiteSearch','comment','1.2.1','Refactored search providers and results page','2023-06-09 13:21:43'),(284,'OFFLINE.SiteSearch','comment','1.2.2','Minor bugfix in Feegleweb.Octoshop settings page translation','2023-06-09 13:21:43'),(285,'OFFLINE.SiteSearch','comment','1.2.3','Fixed bug where the search results sometimes broke the page layout','2023-06-09 13:21:43'),(286,'OFFLINE.SiteSearch','comment','1.2.4','Fixed bug where unavailable thumbnails lead to an error','2023-06-09 13:21:43'),(287,'OFFLINE.SiteSearch','comment','1.2.5','Fixed bug where the provider badge is not displayed for custom search providers','2023-06-09 13:21:43'),(288,'OFFLINE.SiteSearch','comment','1.2.6','Added support for Responsiv.Showcase (Thanks to MichiReich)','2023-06-09 13:21:43'),(289,'OFFLINE.SiteSearch','comment','1.2.7','Fixed bug where custom url settings were ignored in search results for some providers','2023-06-09 13:21:43'),(290,'OFFLINE.SiteSearch','comment','1.2.8','Added support for viewBag properties in RainLab.Pages','2023-06-09 13:21:43'),(291,'OFFLINE.SiteSearch','comment','1.2.9','Added support for static page component hosts','2023-06-09 13:21:43'),(292,'OFFLINE.SiteSearch','comment','1.2.10','Added support for multiple variables in Rainlab.Blog urls (Thanks to graker)','2023-06-09 13:21:43'),(293,'OFFLINE.SiteSearch','comment','1.2.11','Optimized handling of multibyte strings','2023-06-09 13:21:43'),(294,'OFFLINE.SiteSearch','comment','1.2.12','Added support for Jiri.Jkshop','2023-06-09 13:21:43'),(295,'OFFLINE.SiteSearch','comment','1.2.13','Minor bugfixes for marked queries in search results and Rainlab.Blog provider (Thanks to graker)','2023-06-09 13:21:43'),(296,'OFFLINE.SiteSearch','comment','1.2.14','Fixed bug in Jiri.JKShop provider','2023-06-09 13:21:43'),(297,'OFFLINE.SiteSearch','comment','1.2.15','Added a new meta property for search results (thanks to cracki)','2023-06-09 13:21:43'),(298,'OFFLINE.SiteSearch','comment','1.2.16','Added Persian (Farsi) translations (thanks to cracki)','2023-06-09 13:21:43'),(299,'OFFLINE.SiteSearch','comment','1.2.17','Added support for Indikator.News (thanks to gergo85)','2023-06-09 13:21:43'),(300,'OFFLINE.SiteSearch','comment','1.2.18','Fixed bug where titles of static pages where not searched (thanks to beenen445)','2023-06-09 13:21:43'),(301,'OFFLINE.SiteSearch','comment','1.2.19','Added support for OFFLINE.SnipcartShop','2023-06-09 13:21:43'),(302,'OFFLINE.SiteSearch','comment','1.2.20','Added support for VojtaSvoboda.Brands (thanks to vojtasvoboda)','2023-06-09 13:21:43'),(303,'OFFLINE.SiteSearch','comment','1.2.21','Added Portuguese translations (thanks to ribsousa)','2023-06-09 13:21:43'),(304,'OFFLINE.SiteSearch','comment','1.2.22','Fixed Portuguese translations','2023-06-09 13:21:43'),(305,'OFFLINE.SiteSearch','comment','1.2.23','Fixed support for translated Rainlab.Blog contents','2023-06-09 13:21:43'),(306,'OFFLINE.SiteSearch','comment','1.2.24','Added composer.json to allow loading plugin as dependency (thanks to adduc)','2023-06-09 13:21:43'),(307,'OFFLINE.SiteSearch','comment','1.2.25','Fixed bug that sometimes lead to broken html in search results (thanks to graker)','2023-06-09 13:21:43'),(308,'OFFLINE.SiteSearch','comment','1.2.26','Exclude hidden static pages from search results (thanks to plyusninva)','2023-06-09 13:21:43'),(309,'OFFLINE.SiteSearch','comment','1.2.27','Added support for Graker.PhotoAlbums (thanks to graker)','2023-06-09 13:21:43'),(310,'OFFLINE.SiteSearch','comment','1.2.28','Added new result.identifier property','2023-06-09 13:21:43'),(311,'OFFLINE.SiteSearch','comment','1.2.29','Optimized thumbnail generation for Graker.PhotoAlbums results (thanks to graker)','2023-06-09 13:21:43'),(312,'OFFLINE.SiteSearch','comment','1.2.30','The searchResults component\'s resultsCollection is now publically accessible','2023-06-09 13:21:43'),(313,'OFFLINE.SiteSearch','comment','1.2.31','Added model property for each search result to retreive the original model the result was generated from','2023-06-09 13:21:43'),(314,'OFFLINE.SiteSearch','comment','1.2.32','Added support for custom ResultsProvider classes','2023-06-09 13:21:43'),(315,'OFFLINE.SiteSearch','comment','1.2.33','Fix the use of multiple custom ResultsProvider for a plugin','2023-06-09 13:21:43'),(316,'OFFLINE.SiteSearch','comment','1.3.1','Added new searchInput component with search-as-you-type feature','2023-06-09 13:21:43'),(317,'OFFLINE.SiteSearch','comment','1.3.2','Fixed bug in AutoCompleteComponent','2023-06-09 13:21:43'),(318,'OFFLINE.SiteSearch','comment','1.3.3','!!! All results are now returned with a relative URL to prevent problems with translated contents. Make sure to pass your result.url throught the \"app\" filter if you are using your own search result partials','2023-06-09 13:21:43'),(319,'OFFLINE.SiteSearch','comment','1.3.4','Fixed undefined index error when a static page doesn\'t have a title set','2023-06-09 13:21:43'),(320,'OFFLINE.SiteSearch','comment','1.3.5','Added ability to edit the user\'s query before searching','2023-06-09 13:21:43'),(321,'OFFLINE.SiteSearch','comment','1.3.6','!!! Using RadiantWeb.ProBlog\'s internal settings to get the correct parent page for a blog post result. This enables support for multiple blogs on the same website. If your blog search results have wrong URLs after this update make sure to configure your default page for rendering blog posts via the ProBlog backend settings.','2023-06-09 13:21:43'),(322,'OFFLINE.SiteSearch','comment','1.3.7','Added the ability to add age penalties to search results. This can be used to show newer results higher up in your search results.','2023-06-09 13:21:43'),(323,'OFFLINE.SiteSearch','comment','1.3.8','Optimized support for multiple SearchInput components on a single page.','2023-06-09 13:21:43'),(324,'OFFLINE.SiteSearch','comment','1.3.9','Added Chinese language support (thanks to Ckend)','2023-06-09 13:21:43'),(325,'OFFLINE.SiteSearch','comment','1.3.10','Fixed link to search result in default results partial (thanks to wizzard94)','2023-06-09 13:21:43'),(326,'OFFLINE.SiteSearch','comment','1.3.11','Trim query before searching','2023-06-09 13:21:43'),(327,'OFFLINE.SiteSearch','comment','1.3.12','Stability improvements','2023-06-09 13:21:43'),(328,'OFFLINE.SiteSearch','comment','1.3.13','Pre-populate search query in searchInput field','2023-06-09 13:21:43'),(329,'OFFLINE.SiteSearch','comment','1.3.14','Include placeholders on Rainlab.Pages pages in search results','2023-06-09 13:21:43'),(330,'OFFLINE.SiteSearch','comment','1.3.15','Catch invalid markup errors when searching RainLab.Pages','2023-06-09 13:21:43'),(331,'OFFLINE.SiteSearch','comment','1.3.16','Only search RainLab.Blog contents of current locale','2023-06-09 13:21:43'),(332,'OFFLINE.SiteSearch','comment','1.3.17','Fixed pagination links when using RainLab.Translate','2023-06-09 13:21:43'),(333,'OFFLINE.SiteSearch','comment','1.3.18','Updated persian translations (thanks to @sajjad-ser)','2023-06-09 13:21:43'),(334,'OFFLINE.SiteSearch','comment','1.3.19','Added finnish translations (thank to @mediaclinic)','2023-06-09 13:21:43'),(335,'OFFLINE.SiteSearch','comment','1.3.20','Added bulgarian translations (thank to @NGavanozov)','2023-06-09 13:21:43'),(336,'OFFLINE.SiteSearch','comment','1.3.21','Fixed RainLab.Blog published_at date handling','2023-06-09 13:21:43'),(337,'OFFLINE.SiteSearch','comment','1.3.22','Fixed problem with queries that contain only spaces','2023-06-09 13:21:43'),(338,'OFFLINE.SiteSearch','comment','1.4.0','SiteSearch can now log all search queries. Enable via backend settings.','2023-06-09 13:21:43'),(339,'OFFLINE.SiteSearch','script','1.4.1','create_offline_sitesearch_query_logs.php','2023-06-09 13:21:43'),(340,'OFFLINE.SiteSearch','comment','1.4.1','Minor bugfixes','2023-06-09 13:21:43'),(341,'OFFLINE.SiteSearch','comment','1.4.2','Added User-Agent to list view','2023-06-09 13:21:43'),(342,'OFFLINE.SiteSearch','comment','1.4.3','Fixed bug where empty queries resulted in an Exception','2023-06-09 13:21:43'),(343,'OFFLINE.SiteSearch','comment','1.4.4','Optimized support for cms pages search: Your Twig markup is now completely rendered and searched!','2023-06-09 13:21:43'),(344,'OFFLINE.SiteSearch','comment','1.4.5','Use meta_title for RainLab.Pages results if available','2023-06-09 13:21:43'),(345,'OFFLINE.SiteSearch','comment','1.4.6','Made getAgePenalty method static so it can be re-used in simple Event providers','2023-06-09 13:21:43'),(346,'OFFLINE.SiteSearch','comment','1.4.7','Optimized searchResults component so it can be used in partials and static pages','2023-06-09 13:21:43'),(347,'OFFLINE.SiteSearch','comment','1.4.8','Allow custom penalty parameters in ResultsProvider::agePenaltyForDays method','2023-06-09 13:21:43'),(348,'OFFLINE.SiteSearch','comment','1.4.9','Moved query log link from main navbar to backend settings','2023-06-09 13:21:43'),(349,'OFFLINE.SiteSearch','comment','1.4.10','Improved Czech translations','2023-06-09 13:21:43'),(350,'OFFLINE.SiteSearch','comment','1.5.0','Added `offline.sitesearch.results` event to allow customization (filter, sort) of the results collection before it is displayed','2023-06-09 13:21:43'),(351,'OFFLINE.SiteSearch','comment','1.5.1','Fixed typo in the newly added event name','2023-06-09 13:21:43'),(352,'OFFLINE.SiteSearch','comment','1.5.2','Made Result::markQuery method public for easier extension','2023-06-09 13:21:43'),(353,'OFFLINE.SiteSearch','comment','1.5.3','Fixed result order in searchInput component','2023-06-09 13:21:43'),(354,'OFFLINE.SiteSearch','comment','1.5.4','Fixed handling of invalid page url parameter','2023-06-09 13:21:43'),(355,'OFFLINE.SiteSearch','comment','1.5.5','Fixed handling of invalid offline.sitesearch.results event returns','2023-06-09 13:21:43'),(356,'OFFLINE.SiteSearch','comment','1.5.6','Updated russian translations (thanks to @Web-VPF)','2023-06-09 13:21:43'),(357,'October.Drivers','comment','1.0.1','First version of Drivers','2023-06-09 13:21:43'),(358,'October.Drivers','comment','1.0.2','Update Guzzle library to version 5.0','2023-06-09 13:21:43'),(359,'October.Drivers','comment','1.1.0','Update AWS library to version 3.0','2023-06-09 13:21:43'),(360,'October.Drivers','comment','1.1.1','Update Guzzle library to version 6.0','2023-06-09 13:21:43'),(361,'October.Drivers','comment','1.1.2','Update Guzzle library to version 6.3','2023-06-09 13:21:43'),(362,'October.Drivers','comment','1.1.3','Update AWS library to version 3.1','2023-06-09 13:21:43'),(363,'RainLab.Blog','script','1.0.1','create_posts_table.php','2023-06-09 13:21:43'),(364,'RainLab.Blog','script','1.0.1','create_categories_table.php','2023-06-09 13:21:43'),(365,'RainLab.Blog','script','1.0.1','seed_all_tables.php','2023-06-09 13:40:50'),(366,'RainLab.Blog','comment','1.0.1','Initialize plugin.','2023-06-09 13:40:50'),(367,'RainLab.Blog','comment','1.0.2','Added the processed HTML content column to the posts table.','2023-06-09 13:40:50'),(368,'RainLab.Blog','comment','1.0.3','Category component has been merged with Posts component.','2023-06-09 13:40:50'),(369,'RainLab.Blog','comment','1.0.4','Improvements to the Posts list management UI.','2023-06-09 13:40:50'),(370,'RainLab.Blog','comment','1.0.5','Removes the Author column from blog post list.','2023-06-09 13:40:50'),(371,'RainLab.Blog','comment','1.0.6','Featured images now appear in the Post component.','2023-06-09 13:40:50'),(372,'RainLab.Blog','comment','1.0.7','Added support for the Static Pages menus.','2023-06-09 13:40:50'),(373,'RainLab.Blog','comment','1.0.8','Added total posts to category list.','2023-06-09 13:40:50'),(374,'RainLab.Blog','comment','1.0.9','Added support for the Sitemap plugin.','2023-06-09 13:40:50'),(375,'RainLab.Blog','comment','1.0.10','Added permission to prevent users from seeing posts they did not create.','2023-06-09 13:40:50'),(376,'RainLab.Blog','comment','1.0.11','Deprecate \"idParam\" component property in favour of \"slug\" property.','2023-06-09 13:40:50'),(377,'RainLab.Blog','comment','1.0.12','Fixes issue where images cannot be uploaded caused by latest Markdown library.','2023-06-09 13:40:50'),(378,'RainLab.Blog','comment','1.0.13','Fixes problem with providing pages to Sitemap and Pages plugins.','2023-06-09 13:40:50'),(379,'RainLab.Blog','comment','1.0.14','Add support for CSRF protection feature added to core.','2023-06-09 13:40:50'),(380,'RainLab.Blog','comment','1.1.0','Replaced the Post editor with the new core Markdown editor.','2023-06-09 13:40:50'),(381,'RainLab.Blog','comment','1.1.1','Posts can now be imported and exported.','2023-06-09 13:40:50'),(382,'RainLab.Blog','comment','1.1.2','Posts are no longer visible if the published date has not passed.','2023-06-09 13:40:50'),(383,'RainLab.Blog','comment','1.1.3','Added a New Post shortcut button to the blog menu.','2023-06-09 13:40:50'),(384,'RainLab.Blog','script','1.2.0','categories_add_nested_fields.php','2023-06-09 13:40:50'),(385,'RainLab.Blog','comment','1.2.0','Categories now support nesting.','2023-06-09 13:40:50'),(386,'RainLab.Blog','comment','1.2.1','Post slugs now must be unique.','2023-06-09 13:40:50'),(387,'RainLab.Blog','comment','1.2.2','Fixes issue on new installs.','2023-06-09 13:40:50'),(388,'RainLab.Blog','comment','1.2.3','Minor user interface update.','2023-06-09 13:40:50'),(389,'RainLab.Blog','script','1.2.4','update_timestamp_nullable.php','2023-06-09 13:40:50'),(390,'RainLab.Blog','comment','1.2.4','Database maintenance. Updated all timestamp columns to be nullable.','2023-06-09 13:40:50'),(391,'RainLab.Blog','comment','1.2.5','Added translation support for blog posts.','2023-06-09 13:40:50'),(392,'RainLab.Blog','comment','1.2.6','The published field can now supply a time with the date.','2023-06-09 13:40:51'),(393,'RainLab.Blog','comment','1.2.7','Introduced a new RSS feed component.','2023-06-09 13:40:51'),(394,'RainLab.Blog','comment','1.2.8','Fixes issue with translated `content_html` attribute on blog posts.','2023-06-09 13:40:51'),(395,'RainLab.Blog','comment','1.2.9','Added translation support for blog categories.','2023-06-09 13:40:51'),(396,'RainLab.Blog','comment','1.2.10','Added translation support for post slugs.','2023-06-09 13:40:51'),(397,'RainLab.Blog','comment','1.2.11','Fixes bug where excerpt is not translated.','2023-06-09 13:40:51'),(398,'RainLab.Blog','comment','1.2.12','Description field added to category form.','2023-06-09 13:40:51'),(399,'RainLab.Blog','comment','1.2.13','Improved support for Static Pages menus, added a blog post and all blog posts.','2023-06-09 13:40:51'),(400,'RainLab.Blog','comment','1.2.14','Added post exception property to the post list component, useful for showing related posts.','2023-06-09 13:40:51'),(401,'RainLab.Blog','comment','1.2.15','Back-end navigation sort order updated.','2023-06-09 13:40:51'),(402,'RainLab.Blog','comment','1.2.16','Added `nextPost` and `previousPost` to the blog post component.','2023-06-09 13:40:51'),(403,'RainLab.Blog','comment','1.2.17','Improved the next and previous logic to sort by the published date.','2023-06-09 13:40:51'),(404,'RainLab.Blog','comment','1.2.18','Minor change to internals.','2023-06-09 13:40:51'),(405,'RainLab.Blog','comment','1.2.19','Improved support for Build 420+','2023-06-09 13:40:51'),(406,'RainLab.Blog','script','1.3.0','posts_add_metadata.php','2023-06-09 13:40:51'),(407,'RainLab.Blog','comment','1.3.0','Added metadata column for plugins to store data in','2023-06-09 13:40:51'),(408,'RainLab.Blog','comment','1.3.1','Fixed metadata column not being jsonable','2023-06-09 13:40:51'),(409,'RainLab.Blog','comment','1.3.2','Allow custom slug name for components, add 404 handling for missing blog posts, allow exporting of blog images.','2023-06-09 13:40:51'),(410,'RainLab.Blog','comment','1.3.3','Fixed \'excluded categories\' filter from being run when value is empty.','2023-06-09 13:40:51'),(411,'RainLab.Blog','comment','1.3.4','Allow post author to be specified. Improved translations.','2023-06-09 13:40:51'),(412,'RainLab.Blog','comment','1.3.5','Fixed missing user info from breaking initial seeder in migrations. Fixed a PostgreSQL issue with blog exports.','2023-06-09 13:40:51'),(413,'RainLab.Blog','comment','1.3.6','Improved French translations.','2023-06-09 13:40:51'),(414,'RainLab.Blog','comment','1.4.0','Stability improvements. Rollback custom slug names for components','2023-06-09 13:40:51'),(415,'RainLab.Blog','comment','1.4.1','Fixes potential security issue with unsafe Markdown. Allow blog bylines to be translated.','2023-06-09 13:40:51'),(416,'RainLab.Blog','comment','1.4.2','Fix 404 redirects for missing blog posts. Assign current category to the listed posts when using the Posts component on a page with the category parameter available.','2023-06-09 13:40:51'),(417,'RainLab.Blog','comment','1.4.3','Fixes incompatibility with locale switching when plugin is used in conjunction with the Translate plugin. Fixes undefined category error.','2023-06-09 13:40:51'),(418,'RainLab.Blog','comment','1.4.4','Rollback translated bylines, please move or override the default component markup instead.','2023-06-09 13:40:51'),(419,'RainLab.Blog','comment','1.5.0','Implement support for October CMS v2.0','2023-06-09 13:40:51'),(420,'RainLab.Blog','comment','1.5.1','Fixes interaction with Translate plugin','2023-06-09 13:40:51'),(421,'RainLab.Builder','comment','1.0.1','Initialize plugin.','2023-06-09 13:40:51'),(422,'RainLab.Builder','comment','1.0.2','Fixes the problem with selecting a plugin. Minor localization corrections. Configuration files in the list and form behaviors are now autocomplete.','2023-06-09 13:40:51'),(423,'RainLab.Builder','comment','1.0.3','Improved handling of the enum data type.','2023-06-09 13:40:51'),(424,'RainLab.Builder','comment','1.0.4','Added user permissions to work with the Builder.','2023-06-09 13:40:51'),(425,'RainLab.Builder','comment','1.0.5','Fixed permissions registration.','2023-06-09 13:40:51'),(426,'RainLab.Builder','comment','1.0.6','Fixed front-end record ordering in the Record List component.','2023-06-09 13:40:51'),(427,'RainLab.Builder','comment','1.0.7','Builder settings are now protected with user permissions. The database table column list is scrollable now. Minor code cleanup.','2023-06-09 13:40:51'),(428,'RainLab.Builder','comment','1.0.8','Added the Reorder Controller behavior.','2023-06-09 13:40:51'),(429,'RainLab.Builder','comment','1.0.9','Minor API and UI updates.','2023-06-09 13:40:51'),(430,'RainLab.Builder','comment','1.0.10','Minor styling update.','2023-06-09 13:40:51'),(431,'RainLab.Builder','comment','1.0.11','Fixed a bug where clicking placeholder in a repeater would open Inspector. Fixed a problem with saving forms with repeaters in tabs. Minor style fix.','2023-06-09 13:40:51'),(432,'RainLab.Builder','comment','1.0.12','Added support for the Trigger property to the Media Finder widget configuration. Names of form fields and list columns definition files can now contain underscores.','2023-06-09 13:40:51'),(433,'RainLab.Builder','comment','1.0.13','Minor styling fix on the database editor.','2023-06-09 13:40:51'),(434,'RainLab.Builder','comment','1.0.14','Added support for published_at timestamp field','2023-06-09 13:40:51'),(435,'RainLab.Builder','comment','1.0.15','Fixed a bug where saving a localization string in Inspector could cause a JavaScript error. Added support for Timestamps and Soft Deleting for new models.','2023-06-09 13:40:51'),(436,'RainLab.Builder','comment','1.0.16','Fixed a bug when saving a form with the Repeater widget in a tab could create invalid fields in the form\'s outside area. Added a check that prevents creating localization strings inside other existing strings.','2023-06-09 13:40:51'),(437,'RainLab.Builder','comment','1.0.17','Added support Trigger attribute support for RecordFinder and Repeater form widgets.','2023-06-09 13:40:51'),(438,'RainLab.Builder','comment','1.0.18','Fixes a bug where \'::class\' notations in a model class definition could prevent the model from appearing in the Builder model list. Added emptyOption property support to the dropdown form control.','2023-06-09 13:40:51'),(439,'RainLab.Builder','comment','1.0.19','Added a feature allowing to add all database columns to a list definition. Added max length validation for database table and column names.','2023-06-09 13:40:51'),(440,'RainLab.Builder','comment','1.0.20','Fixes a bug where form the builder could trigger the \"current.hasAttribute is not a function\" error.','2023-06-09 13:40:51'),(441,'RainLab.Builder','comment','1.0.21','Back-end navigation sort order updated.','2023-06-09 13:40:51'),(442,'RainLab.Builder','comment','1.0.22','Added scopeValue property to the RecordList component.','2023-06-09 13:40:51'),(443,'RainLab.Builder','comment','1.0.23','Added support for balloon-selector field type, added Brazilian Portuguese translation, fixed some bugs','2023-06-09 13:40:51'),(444,'RainLab.Builder','comment','1.0.24','Added support for tag list field type, added read only toggle for fields. Prevent plugins from using reserved PHP keywords for class names and namespaces','2023-06-09 13:40:51'),(445,'RainLab.Builder','comment','1.0.25','Allow editing of migration code in the \"Migration\" popup when saving changes in the database editor.','2023-06-09 13:40:51'),(446,'RainLab.Builder','comment','1.0.26','Allow special default values for columns and added new \"Add ID column\" button to database editor.','2023-06-09 13:40:51'),(447,'RainLab.Builder','comment','1.0.27','Added ability to use \'scope\' in a form relation field, added ability to change the sort order of versions and added additional properties for repeater widget in form builder. Added Polish translation.','2023-06-09 13:40:51'),(448,'RainLab.Builder','comment','1.0.28','Fixes support for PHP 8','2023-06-09 13:40:51'),(449,'RainLab.Builder','comment','1.0.29','Disable touch device detection','2023-06-09 13:40:51'),(450,'RainLab.Builder','comment','1.0.30','Minor styling improvements','2023-06-09 13:40:51'),(451,'RainLab.Builder','comment','1.0.31','Added support for more rich editor and file upload properties','2023-06-09 13:40:51'),(452,'RainLab.Builder','comment','1.0.32','Minor styling improvements','2023-06-09 13:40:51'),(453,'RainLab.Builder','comment','1.1.0','Adds feature for adding database fields to a form definition.','2023-06-09 13:40:51'),(454,'RainLab.Location','comment','1.0.1','Initialize plugin.','2023-06-09 13:40:51'),(455,'RainLab.Location','script','1.0.2','create_states_table.php','2023-06-09 13:40:51'),(456,'RainLab.Location','script','1.0.2','create_countries_table.php','2023-06-09 13:40:51'),(457,'RainLab.Location','comment','1.0.2','Create database tables.','2023-06-09 13:40:51'),(458,'RainLab.Location','script','1.0.3','seed_all_tables.php','2023-06-09 13:40:52'),(459,'RainLab.Location','comment','1.0.3','Add seed data for countries and states.','2023-06-09 13:40:52'),(460,'RainLab.Location','comment','1.0.4','Satisfy the new Google API key requirement.','2023-06-09 13:40:52'),(461,'RainLab.Location','script','1.0.5','add_country_pinned_flag.php','2023-06-09 13:40:52'),(462,'RainLab.Location','comment','1.0.5','Countries can now be pinned to make them appear at the top of the list.','2023-06-09 13:40:52'),(463,'RainLab.Location','comment','1.0.6','Added support for defining a default country and state.','2023-06-09 13:40:52'),(464,'RainLab.Location','comment','1.0.7','Added basic geocoding method to the Country model.','2023-06-09 13:40:52'),(465,'RainLab.Location','comment','1.0.8','Include Mexico states','2023-06-09 13:40:52'),(466,'RainLab.Location','comment','1.1.0','Update requires Build 447. Fixed AddressFinder formwidget not working correctly in repeaters.','2023-06-09 13:40:52'),(467,'RainLab.Location','comment','1.1.1','Minor fix to AddressFinder formwidget for the change to the FormField API','2023-06-09 13:40:52'),(468,'RainLab.Location','comment','1.1.2','Yet another change to the AddressFinder for changes to the FormField API','2023-06-09 13:40:52'),(469,'RainLab.Location','script','1.1.3','seed_ar_states.php','2023-06-09 13:40:52'),(470,'RainLab.Location','comment','1.1.3','Include Argentina states','2023-06-09 13:40:52'),(471,'RainLab.Location','comment','1.1.4','Added support for UK counties','2023-06-09 13:40:52'),(472,'RainLab.Location','script','1.1.5','seed_it_states.php','2023-06-09 13:40:52'),(473,'RainLab.Location','comment','1.1.5','Include Italian states (province)','2023-06-09 13:40:52'),(474,'RainLab.Location','script','1.1.6','add_enabled_states.php','2023-06-09 13:40:52'),(475,'RainLab.Location','comment','1.1.6','Added ability to disable specific states','2023-06-09 13:40:52'),(476,'RainLab.Location','comment','1.2.0','Fixes checkboxes in settings pages','2023-06-09 13:40:52'),(477,'RainLab.Location','script','1.2.1','add_country_callingcode.php','2023-06-09 13:40:52'),(478,'RainLab.Location','script','1.2.1','seed_callingcodes.php','2023-06-09 13:40:53'),(479,'RainLab.Location','comment','1.2.1','Add country calling codes','2023-06-09 13:40:53'),(480,'RainLab.Notify','script','1.0.1','create_notifications_table.php','2023-06-09 13:40:53'),(481,'RainLab.Notify','script','1.0.1','create_notification_rules_table.php','2023-06-09 13:40:53'),(482,'RainLab.Notify','script','1.0.1','create_rule_conditions_table.php','2023-06-09 13:40:54'),(483,'RainLab.Notify','script','1.0.1','create_rule_actions_table.php','2023-06-09 13:40:54'),(484,'RainLab.Notify','comment','1.0.1','First version of Notify','2023-06-09 13:40:54'),(485,'RainLab.Notify','comment','1.0.2','Fixes crashing bug.','2023-06-09 13:40:54'),(486,'RainLab.Notify','comment','1.0.3','Added Turkish & Russian translations, various bug fixes.','2023-06-09 13:40:54'),(487,'RainLab.Notify','comment','1.1.0','Fixes support for October CMS 2.0','2023-06-09 13:40:54'),(488,'RainLab.Pages','comment','1.0.1','Implemented the static pages management and the Static Page component.','2023-06-09 13:40:54'),(489,'RainLab.Pages','comment','1.0.2','Fixed the page preview URL.','2023-06-09 13:40:54'),(490,'RainLab.Pages','comment','1.0.3','Implemented menus.','2023-06-09 13:40:54'),(491,'RainLab.Pages','comment','1.0.4','Implemented the content block management and placeholder support.','2023-06-09 13:40:54'),(492,'RainLab.Pages','comment','1.0.5','Added support for the Sitemap plugin.','2023-06-09 13:40:54'),(493,'RainLab.Pages','comment','1.0.6','Minor updates to the internal API.','2023-06-09 13:40:54'),(494,'RainLab.Pages','comment','1.0.7','Added the Snippets feature.','2023-06-09 13:40:54'),(495,'RainLab.Pages','comment','1.0.8','Minor improvements to the code.','2023-06-09 13:40:54'),(496,'RainLab.Pages','comment','1.0.9','Fixes issue where Snippet tab is missing from the Partials form.','2023-06-09 13:40:54'),(497,'RainLab.Pages','comment','1.0.10','Add translations for various locales.','2023-06-09 13:40:54'),(498,'RainLab.Pages','comment','1.0.11','Fixes issue where placeholders tabs were missing from Page form.','2023-06-09 13:40:54'),(499,'RainLab.Pages','comment','1.0.12','Implement Media Manager support.','2023-06-09 13:40:54'),(500,'RainLab.Pages','script','1.1.0','snippets_rename_viewbag_properties.php','2023-06-09 13:40:54'),(501,'RainLab.Pages','comment','1.1.0','Adds meta title and description to pages. Adds |staticPage filter.','2023-06-09 13:40:54'),(502,'RainLab.Pages','comment','1.1.1','Add support for Syntax Fields.','2023-06-09 13:40:54'),(503,'RainLab.Pages','comment','1.1.2','Static Breadcrumbs component now respects the hide from navigation setting.','2023-06-09 13:40:54'),(504,'RainLab.Pages','comment','1.1.3','Minor back-end styling fix.','2023-06-09 13:40:54'),(505,'RainLab.Pages','comment','1.1.4','Minor fix to the StaticPage component API.','2023-06-09 13:40:54'),(506,'RainLab.Pages','comment','1.1.5','Fixes bug when using syntax fields.','2023-06-09 13:40:54'),(507,'RainLab.Pages','comment','1.1.6','Minor styling fix to the back-end UI.','2023-06-09 13:40:54'),(508,'RainLab.Pages','comment','1.1.7','Improved menu item form to include CSS class, open in a new window and hidden flag.','2023-06-09 13:40:54'),(509,'RainLab.Pages','comment','1.1.8','Improved the output of snippet partials when saved.','2023-06-09 13:40:54'),(510,'RainLab.Pages','comment','1.1.9','Minor update to snippet inspector internal API.','2023-06-09 13:40:54'),(511,'RainLab.Pages','comment','1.1.10','Fixes a bug where selecting a layout causes permanent unsaved changes.','2023-06-09 13:40:54'),(512,'RainLab.Pages','comment','1.1.11','Add support for repeater syntax field.','2023-06-09 13:40:54'),(513,'RainLab.Pages','comment','1.2.0','Added support for translations, UI updates.','2023-06-09 13:40:54'),(514,'RainLab.Pages','comment','1.2.1','Use nice titles when listing the content files.','2023-06-09 13:40:54'),(515,'RainLab.Pages','comment','1.2.2','Minor styling update.','2023-06-09 13:40:54'),(516,'RainLab.Pages','comment','1.2.3','Snippets can now be moved by dragging them.','2023-06-09 13:40:54'),(517,'RainLab.Pages','comment','1.2.4','Fixes a bug where the cursor is misplaced when editing text files.','2023-06-09 13:40:54'),(518,'RainLab.Pages','comment','1.2.5','Fixes a bug where the parent page is lost upon changing a page layout.','2023-06-09 13:40:54'),(519,'RainLab.Pages','comment','1.2.6','Shared view variables are now passed to static pages.','2023-06-09 13:40:54'),(520,'RainLab.Pages','comment','1.2.7','Fixes issue with duplicating properties when adding multiple snippets on the same page.','2023-06-09 13:40:54'),(521,'RainLab.Pages','comment','1.2.8','Fixes a bug where creating a content block without extension doesn\'t save the contents to file.','2023-06-09 13:40:54'),(522,'RainLab.Pages','comment','1.2.9','Add conditional support for translating page URLs.','2023-06-09 13:40:54'),(523,'RainLab.Pages','comment','1.2.10','Streamline generation of URLs to use the new Cms::url helper.','2023-06-09 13:40:54'),(524,'RainLab.Pages','comment','1.2.11','Implements repeater usage with translate plugin.','2023-06-09 13:40:54'),(525,'RainLab.Pages','comment','1.2.12','Fixes minor issue when using snippets and switching the application locale.','2023-06-09 13:40:54'),(526,'RainLab.Pages','comment','1.2.13','Fixes bug when AJAX is used on a page that does not yet exist.','2023-06-09 13:40:54'),(527,'RainLab.Pages','comment','1.2.14','Add theme logging support for changes made to menus.','2023-06-09 13:40:54'),(528,'RainLab.Pages','comment','1.2.15','Back-end navigation sort order updated.','2023-06-09 13:40:54'),(529,'RainLab.Pages','comment','1.2.16','Fixes a bug when saving a template that has been modified outside of the CMS (mtime mismatch).','2023-06-09 13:40:54'),(530,'RainLab.Pages','comment','1.2.17','Changes locations of custom fields to secondary tabs instead of the primary Settings area. New menu search ability on adding menu items','2023-06-09 13:40:54'),(531,'RainLab.Pages','comment','1.2.18','Fixes cache-invalidation issues when RainLab.Translate is not installed. Added Greek & Simplified Chinese translations. Removed deprecated calls. Allowed saving HTML in snippet properties. Added support for the MediaFinder in menu items.','2023-06-09 13:40:54'),(532,'RainLab.Pages','comment','1.2.19','Catch exception with corrupted menu file.','2023-06-09 13:40:54'),(533,'RainLab.Pages','comment','1.2.20','StaticMenu component now exposes menuName property; added pages.menu.referencesGenerated event.','2023-06-09 13:40:54'),(534,'RainLab.Pages','comment','1.2.21','Fixes a bug where last Static Menu item cannot be deleted. Improved Persian, Slovak and Turkish translations.','2023-06-09 13:40:54'),(535,'RainLab.Pages','comment','1.3.0','Added support for using Database-driven Themes when enabled in the CMS configuration.','2023-06-09 13:40:54'),(536,'RainLab.Pages','comment','1.3.1','Added ChildPages Component, prevent hidden pages from being returned via menu item resolver.','2023-06-09 13:40:54'),(537,'RainLab.Pages','comment','1.3.2','Fixes error when creating a subpage whose parent has no layout set.','2023-06-09 13:40:54'),(538,'RainLab.Pages','comment','1.3.3','Improves user experience for users with only partial access through permissions','2023-06-09 13:40:54'),(539,'RainLab.Pages','comment','1.3.4','Fix error where large menus were being truncated due to the PHP \"max_input_vars\" configuration value. Improved Slovenian translation.','2023-06-09 13:40:54'),(540,'RainLab.Pages','comment','1.3.5','Minor fix to bust the browser cache for JS assets. Prevent duplicate property fields in snippet inspector.','2023-06-09 13:40:54'),(541,'RainLab.Pages','comment','1.3.6','ChildPages component now displays localized page titles from Translate plugin.','2023-06-09 13:40:54'),(542,'RainLab.Pages','comment','1.3.7','Adds MenuPicker formwidget. Adds future support for v2.0 of October CMS.','2023-06-09 13:40:54'),(543,'RainLab.Pages','comment','1.4.0','Fixes bug when adding menu items in October CMS v2.0.','2023-06-09 13:40:54'),(544,'RainLab.Pages','comment','1.4.1','Fixes support for configuration values.','2023-06-09 13:40:54'),(545,'RainLab.Pages','comment','1.4.3','Fixes page deletion is newer platform builds.','2023-06-09 13:40:54'),(546,'RainLab.Pages','comment','1.4.4','Disable touch device detection','2023-06-09 13:40:54'),(547,'RainLab.Pages','comment','1.4.5','Minor styling improvements','2023-06-09 13:40:54'),(548,'RainLab.Pages','comment','1.4.6','Minor styling improvements','2023-06-09 13:40:54'),(549,'RainLab.Pages','comment','1.4.7','Minor layout fix in the Page editor','2023-06-09 13:40:54'),(550,'RainLab.Pages','comment','1.4.8','Fixes rich editor usage inside repeaters. Adds getProcessedMarkup event.','2023-06-09 13:40:54'),(551,'RainLab.Pages','comment','1.4.9','Fixes a lifecycle issue when switching the page layout.','2023-06-09 13:40:54'),(552,'RainLab.Pages','comment','1.4.10','Fixes maintenance mode when using static pages.','2023-06-09 13:40:54'),(553,'RainLab.Translate','script','1.0.1','create_messages_table.php','2023-06-09 13:40:54'),(554,'RainLab.Translate','script','1.0.1','create_attributes_table.php','2023-06-09 13:40:54'),(555,'RainLab.Translate','script','1.0.1','create_locales_table.php','2023-06-09 13:40:54'),(556,'RainLab.Translate','comment','1.0.1','First version of Translate','2023-06-09 13:40:54'),(557,'RainLab.Translate','comment','1.0.2','Languages and Messages can now be deleted.','2023-06-09 13:40:54'),(558,'RainLab.Translate','comment','1.0.3','Minor updates for latest October release.','2023-06-09 13:40:54'),(559,'RainLab.Translate','comment','1.0.4','Locale cache will clear when updating a language.','2023-06-09 13:40:54'),(560,'RainLab.Translate','comment','1.0.5','Add Spanish language and fix plugin config.','2023-06-09 13:40:54'),(561,'RainLab.Translate','comment','1.0.6','Minor improvements to the code.','2023-06-09 13:40:54'),(562,'RainLab.Translate','comment','1.0.7','Fixes major bug where translations are skipped entirely!','2023-06-09 13:40:54'),(563,'RainLab.Translate','comment','1.0.8','Minor bug fixes.','2023-06-09 13:40:54'),(564,'RainLab.Translate','comment','1.0.9','Fixes an issue where newly created models lose their translated values.','2023-06-09 13:40:54'),(565,'RainLab.Translate','comment','1.0.10','Minor fix for latest build.','2023-06-09 13:40:54'),(566,'RainLab.Translate','comment','1.0.11','Fix multilingual rich editor when used in stretch mode.','2023-06-09 13:40:54'),(567,'RainLab.Translate','comment','1.1.0','Introduce compatibility with RainLab.Pages plugin.','2023-06-09 13:40:54'),(568,'RainLab.Translate','comment','1.1.1','Minor UI fix to the language picker.','2023-06-09 13:40:54'),(569,'RainLab.Translate','comment','1.1.2','Add support for translating Static Content files.','2023-06-09 13:40:54'),(570,'RainLab.Translate','comment','1.1.3','Improved support for the multilingual rich editor.','2023-06-09 13:40:54'),(571,'RainLab.Translate','comment','1.1.4','Adds new multilingual markdown editor.','2023-06-09 13:40:54'),(572,'RainLab.Translate','comment','1.1.5','Minor update to the multilingual control API.','2023-06-09 13:40:54'),(573,'RainLab.Translate','comment','1.1.6','Minor improvements in the message editor.','2023-06-09 13:40:54'),(574,'RainLab.Translate','comment','1.1.7','Fixes bug not showing content when first loading multilingual textarea controls.','2023-06-09 13:40:54'),(575,'RainLab.Translate','comment','1.2.0','CMS pages now support translating the URL.','2023-06-09 13:40:54'),(576,'RainLab.Translate','comment','1.2.1','Minor update in the rich editor and code editor language control position.','2023-06-09 13:40:54'),(577,'RainLab.Translate','comment','1.2.2','Static Pages now support translating the URL.','2023-06-09 13:40:54'),(578,'RainLab.Translate','comment','1.2.3','Fixes Rich Editor when inserting a page link.','2023-06-09 13:40:54'),(579,'RainLab.Translate','script','1.2.4','create_indexes_table.php','2023-06-09 13:40:54'),(580,'RainLab.Translate','comment','1.2.4','Translatable attributes can now be declared as indexes.','2023-06-09 13:40:54'),(581,'RainLab.Translate','comment','1.2.5','Adds new multilingual repeater form widget.','2023-06-09 13:40:54'),(582,'RainLab.Translate','comment','1.2.6','Fixes repeater usage with static pages plugin.','2023-06-09 13:40:54'),(583,'RainLab.Translate','comment','1.2.7','Fixes placeholder usage with static pages plugin.','2023-06-09 13:40:54'),(584,'RainLab.Translate','comment','1.2.8','Improvements to code for latest October build compatibility.','2023-06-09 13:40:54'),(585,'RainLab.Translate','comment','1.2.9','Fixes context for translated strings when used with Static Pages.','2023-06-09 13:40:54'),(586,'RainLab.Translate','comment','1.2.10','Minor UI fix to the multilingual repeater.','2023-06-09 13:40:54'),(587,'RainLab.Translate','comment','1.2.11','Fixes translation not working with partials loaded via AJAX.','2023-06-09 13:40:54'),(588,'RainLab.Translate','comment','1.2.12','Add support for translating the new grouped repeater feature.','2023-06-09 13:40:54'),(589,'RainLab.Translate','comment','1.3.0','Added search to the translate messages page.','2023-06-09 13:40:54'),(590,'RainLab.Translate','script','1.3.1','builder_table_update_rainlab_translate_locales.php','2023-06-09 13:40:54'),(591,'RainLab.Translate','script','1.3.1','seed_all_tables.php','2023-06-09 13:40:54'),(592,'RainLab.Translate','comment','1.3.1','Added reordering to languages','2023-06-09 13:40:54'),(593,'RainLab.Translate','comment','1.3.2','Improved compatibility with RainLab.Pages, added ability to scan Mail Messages for translatable variables.','2023-06-09 13:40:54'),(594,'RainLab.Translate','comment','1.3.3','Fix to the locale picker session handling in Build 420 onwards.','2023-06-09 13:40:54'),(595,'RainLab.Translate','comment','1.3.4','Add alternate hreflang elements and adds prefixDefaultLocale setting.','2023-06-09 13:40:54'),(596,'RainLab.Translate','comment','1.3.5','Fix MLRepeater bug when switching locales.','2023-06-09 13:40:54'),(597,'RainLab.Translate','comment','1.3.6','Fix Middleware to use the prefixDefaultLocale setting introduced in 1.3.4','2023-06-09 13:40:54'),(598,'RainLab.Translate','comment','1.3.7','Fix config reference in LocaleMiddleware','2023-06-09 13:40:54'),(599,'RainLab.Translate','comment','1.3.8','Keep query string when switching locales','2023-06-09 13:40:54'),(600,'RainLab.Translate','comment','1.4.0','Add importer and exporter for messages','2023-06-09 13:40:54'),(601,'RainLab.Translate','comment','1.4.1','Updated Hungarian translation. Added Arabic translation. Fixed issue where default texts are overwritten by import. Fixed issue where the language switcher for repeater fields would overlap with the first repeater row.','2023-06-09 13:40:54'),(602,'RainLab.Translate','comment','1.4.2','Add multilingual MediaFinder','2023-06-09 13:40:54'),(603,'RainLab.Translate','comment','1.4.3','!!! Please update OctoberCMS to Build 444 before updating this plugin. Added ability to translate CMS Pages fields (e.g. title, description, meta-title, meta-description)','2023-06-09 13:40:54'),(604,'RainLab.Translate','comment','1.4.4','Minor improvements to compatibility with Laravel framework.','2023-06-09 13:40:54'),(605,'RainLab.Translate','comment','1.4.5','Fixed issue when using the language switcher','2023-06-09 13:40:54'),(606,'RainLab.Translate','comment','1.5.0','Compatibility fix with Build 451','2023-06-09 13:40:55'),(607,'RainLab.Translate','comment','1.6.0','Make File Upload widget properties translatable. Merge Repeater core changes into MLRepeater widget. Add getter method to retrieve original translate data.','2023-06-09 13:40:55'),(608,'RainLab.Translate','comment','1.6.1','Add ability for models to provide translated computed data, add option to disable locale prefix routing','2023-06-09 13:40:55'),(609,'RainLab.Translate','comment','1.6.2','Implement localeUrl filter, add per-locale theme configuration support','2023-06-09 13:40:55'),(610,'RainLab.Translate','comment','1.6.3','Add eager loading for translations, restore support for accessors & mutators','2023-06-09 13:40:55'),(611,'RainLab.Translate','comment','1.6.4','Fixes PHP 7.4 compatibility','2023-06-09 13:40:55'),(612,'RainLab.Translate','comment','1.6.5','Fixes compatibility issue when other plugins use a custom model morph map','2023-06-09 13:40:55'),(613,'RainLab.Translate','script','1.6.6','migrate_morphed_attributes.php','2023-06-09 13:40:55'),(614,'RainLab.Translate','comment','1.6.6','Introduce migration to patch existing translations using morph map','2023-06-09 13:40:55'),(615,'RainLab.Translate','script','1.6.7','migrate_morphed_indexes.php','2023-06-09 13:40:55'),(616,'RainLab.Translate','comment','1.6.7','Introduce migration to patch existing indexes using morph map','2023-06-09 13:40:55'),(617,'RainLab.Translate','comment','1.6.8','Add support for transOrderBy; Add translation support for ThemeData; Update russian localization.','2023-06-09 13:40:55'),(618,'RainLab.Translate','comment','1.6.9','Clear Static Page menu cache after saving the model; CSS fix for Text/Textarea input fields language selector.','2023-06-09 13:40:55'),(619,'RainLab.Translate','script','1.6.10','update_messages_table.php','2023-06-09 13:40:55'),(620,'RainLab.Translate','comment','1.6.10','Add option to purge deleted messages when scanning messages, Add Scan error column on Messages page, Fix translations that were lost when clicking locale twice while holding ctrl key, Fix error with nested fields default locale value, Escape Message translate params value.','2023-06-09 13:40:55'),(621,'RainLab.Translate','comment','1.7.0','!!! Breaking change for the Message::trans() method (params are now escaped), fix message translation documentation, fix string translation key for scan errors column header.','2023-06-09 13:40:55'),(622,'RainLab.Translate','comment','1.7.1','Fix YAML issue with previous tag/release.','2023-06-09 13:40:55'),(623,'RainLab.Translate','comment','1.7.2','Fix regex when \"|_\" filter is followed by another filter, Try locale without country before returning default translation, Allow exporting default locale, Fire \'rainlab.translate.themeScanner.afterScan\' event in the theme scanner for extendability.','2023-06-09 13:40:55'),(624,'RainLab.Translate','comment','1.7.3','Make plugin ready for Laravel 6 update, Add support for translating RainLab.Pages MenuItem properties (requires RainLab.Pages v1.3.6), Restore multilingual button position for textarea, Fix translatableAttributes.','2023-06-09 13:40:55'),(625,'RainLab.Translate','comment','1.7.4','Faster version of transWhere, Mail templates/views can now be localized, Fix messages table layout on mobile, Fix scopeTransOrderBy duplicates, Polish localization updates, Turkish localization updates, Add Greek language localization.','2023-06-09 13:40:55'),(626,'RainLab.Translate','comment','1.8.0','Adds initial support for October v2.0','2023-06-09 13:40:55'),(627,'RainLab.Translate','comment','1.8.1','Minor bugfix','2023-06-09 13:40:55'),(628,'RainLab.Translate','comment','1.8.2','Fixes translated file models and theme data for v2.0. The parent model must implement translatable behavior for their related file models to be translated.','2023-06-09 13:40:55'),(629,'RainLab.Translate','comment','1.8.4','Fixes the multilingual mediafinder to work with the media module.','2023-06-09 13:40:55'),(630,'RainLab.Translate','comment','1.8.6','Fixes invisible checkboxes when scanning for messages.','2023-06-09 13:40:55'),(631,'RainLab.Translate','comment','1.8.7','Fixes Markdown editor translation.','2023-06-09 13:40:55'),(632,'RainLab.Translate','comment','1.8.8','Fixes Laravel compatibility in custom Repeater.','2023-06-09 13:40:55'),(633,'RainLab.Translate','comment','1.9.0','Restores ability to translate URLs with CMS Editor in October v2.0','2023-06-09 13:40:55'),(634,'RainLab.Translate','comment','1.9.1','Minor styling improvements','2023-06-09 13:40:55'),(635,'RainLab.Translate','comment','1.9.2','Fixes issue creating new content in CMS Editor','2023-06-09 13:40:55'),(636,'RainLab.Translate','comment','1.9.3','Improves support when using child themes','2023-06-09 13:40:55'),(637,'RainLab.User','script','1.0.1','create_users_table.php','2023-06-09 13:40:55'),(638,'RainLab.User','script','1.0.1','create_throttle_table.php','2023-06-09 13:40:55'),(639,'RainLab.User','comment','1.0.1','Initialize plugin.','2023-06-09 13:40:55'),(640,'RainLab.User','comment','1.0.2','Seed tables.','2023-06-09 13:40:55'),(641,'RainLab.User','comment','1.0.3','Translated hard-coded text to language strings.','2023-06-09 13:40:55'),(642,'RainLab.User','comment','1.0.4','Improvements to user-interface for Location manager.','2023-06-09 13:40:55'),(643,'RainLab.User','comment','1.0.5','Added contact details for users.','2023-06-09 13:40:55'),(644,'RainLab.User','script','1.0.6','create_mail_blockers_table.php','2023-06-09 13:40:55'),(645,'RainLab.User','comment','1.0.6','Added Mail Blocker utility so users can block specific mail templates.','2023-06-09 13:40:55'),(646,'RainLab.User','comment','1.0.7','Add back-end Settings page.','2023-06-09 13:40:55'),(647,'RainLab.User','comment','1.0.8','Updated the Settings page.','2023-06-09 13:40:55'),(648,'RainLab.User','comment','1.0.9','Adds new welcome mail message for users and administrators.','2023-06-09 13:40:55'),(649,'RainLab.User','comment','1.0.10','Adds administrator-only activation mode.','2023-06-09 13:40:55'),(650,'RainLab.User','script','1.0.11','users_add_login_column.php','2023-06-09 13:40:55'),(651,'RainLab.User','comment','1.0.11','Users now have an optional login field that defaults to the email field.','2023-06-09 13:40:55'),(652,'RainLab.User','script','1.0.12','users_rename_login_to_username.php','2023-06-09 13:40:55'),(653,'RainLab.User','comment','1.0.12','Create a dedicated setting for choosing the login mode.','2023-06-09 13:40:55'),(654,'RainLab.User','comment','1.0.13','Minor fix to the Account sign in logic.','2023-06-09 13:40:55'),(655,'RainLab.User','comment','1.0.14','Minor improvements to the code.','2023-06-09 13:40:55'),(656,'RainLab.User','script','1.0.15','users_add_surname.php','2023-06-09 13:40:55'),(657,'RainLab.User','comment','1.0.15','Adds last name column to users table (surname).','2023-06-09 13:40:55'),(658,'RainLab.User','comment','1.0.16','Require permissions for settings page too.','2023-06-09 13:40:55'),(659,'RainLab.User','comment','1.1.0','!!! Profile fields and Locations have been removed.','2023-06-09 13:40:55'),(660,'RainLab.User','script','1.1.1','create_user_groups_table.php','2023-06-09 13:40:55'),(661,'RainLab.User','script','1.1.1','seed_user_groups_table.php','2023-06-09 13:40:56'),(662,'RainLab.User','comment','1.1.1','Users can now be added to groups.','2023-06-09 13:40:56'),(663,'RainLab.User','comment','1.1.2','A raw URL can now be passed as the redirect property in the Account component.','2023-06-09 13:40:56'),(664,'RainLab.User','comment','1.1.3','Adds a super user flag to the users table, reserved for future use.','2023-06-09 13:40:56'),(665,'RainLab.User','comment','1.1.4','User list can be filtered by the group they belong to.','2023-06-09 13:40:56'),(666,'RainLab.User','comment','1.1.5','Adds a new permission to hide the User settings menu item.','2023-06-09 13:40:56'),(667,'RainLab.User','script','1.2.0','users_add_deleted_at.php','2023-06-09 13:40:56'),(668,'RainLab.User','comment','1.2.0','Users can now deactivate their own accounts.','2023-06-09 13:40:56'),(669,'RainLab.User','comment','1.2.1','New feature for checking if a user is recently active/online.','2023-06-09 13:40:56'),(670,'RainLab.User','comment','1.2.2','Add bulk action button to user list.','2023-06-09 13:40:56'),(671,'RainLab.User','comment','1.2.3','Included some descriptive paragraphs in the Reset Password component markup.','2023-06-09 13:40:56'),(672,'RainLab.User','comment','1.2.4','Added a checkbox for blocking all mail sent to the user.','2023-06-09 13:40:56'),(673,'RainLab.User','script','1.2.5','update_timestamp_nullable.php','2023-06-09 13:40:56'),(674,'RainLab.User','comment','1.2.5','Database maintenance. Updated all timestamp columns to be nullable.','2023-06-09 13:40:56'),(675,'RainLab.User','script','1.2.6','users_add_last_seen.php','2023-06-09 13:40:56'),(676,'RainLab.User','comment','1.2.6','Add a dedicated last seen column for users.','2023-06-09 13:40:56'),(677,'RainLab.User','comment','1.2.7','Minor fix to user timestamp attributes.','2023-06-09 13:40:56'),(678,'RainLab.User','comment','1.2.8','Add date range filter to users list. Introduced a logout event.','2023-06-09 13:40:56'),(679,'RainLab.User','comment','1.2.9','Add invitation mail for new accounts created in the back-end.','2023-06-09 13:40:56'),(680,'RainLab.User','script','1.3.0','users_add_guest_flag.php','2023-06-09 13:40:56'),(681,'RainLab.User','script','1.3.0','users_add_superuser_flag.php','2023-06-09 13:40:56'),(682,'RainLab.User','comment','1.3.0','Introduced guest user accounts.','2023-06-09 13:40:56'),(683,'RainLab.User','comment','1.3.1','User notification variables can now be extended.','2023-06-09 13:40:56'),(684,'RainLab.User','comment','1.3.2','Minor fix to the Auth::register method.','2023-06-09 13:40:56'),(685,'RainLab.User','comment','1.3.3','Allow prevention of concurrent user sessions via the user settings.','2023-06-09 13:40:56'),(686,'RainLab.User','comment','1.3.4','Added force secure protocol property to the account component.','2023-06-09 13:40:56'),(687,'RainLab.User','comment','1.4.0','!!! The Notifications tab in User settings has been removed.','2023-06-09 13:40:56'),(688,'RainLab.User','comment','1.4.1','Added support for user impersonation.','2023-06-09 13:40:56'),(689,'RainLab.User','comment','1.4.2','Fixes security bug in Password Reset component.','2023-06-09 13:40:56'),(690,'RainLab.User','comment','1.4.3','Fixes session handling for AJAX requests.','2023-06-09 13:40:56'),(691,'RainLab.User','comment','1.4.4','Fixes bug where impersonation touches the last seen timestamp.','2023-06-09 13:40:56'),(692,'RainLab.User','comment','1.4.5','Added token fallback process to Account / Reset Password components when parameter is missing.','2023-06-09 13:40:56'),(693,'RainLab.User','comment','1.4.6','Fixes Auth::register method signature mismatch with core OctoberCMS Auth library','2023-06-09 13:40:56'),(694,'RainLab.User','comment','1.4.7','Fixes redirect bug in Account component / Update translations and separate user and group management.','2023-06-09 13:40:56'),(695,'RainLab.User','comment','1.4.8','Fixes a bug where calling MailBlocker::removeBlock could remove all mail blocks for the user.','2023-06-09 13:40:56'),(696,'RainLab.User','comment','1.5.0','!!! Required password length is now a minimum of 8 characters. Previous passwords will not be affected until the next password change.','2023-06-09 13:40:56'),(697,'RainLab.User','script','1.5.1','users_add_ip_address.php','2023-06-09 13:40:56'),(698,'RainLab.User','comment','1.5.1','User IP addresses are now logged. Introduce registration throttle.','2023-06-09 13:40:56'),(699,'RainLab.User','comment','1.5.2','Whitespace from usernames is now trimmed, allowed for username to be added to Reset Password mail templates.','2023-06-09 13:40:56'),(700,'RainLab.User','comment','1.5.3','Fixes a bug in the user update functionality if password is not changed. Added highlighting for banned users in user list.','2023-06-09 13:40:56'),(701,'RainLab.User','comment','1.5.4','Multiple translation improvements. Added view events to extend user preview and user listing toolbars.','2023-06-09 13:40:56'),(702,'RainLab.UserPlus','comment','1.0.1','First version of User Profile','2023-06-09 13:40:56'),(703,'RainLab.UserPlus','script','1.0.2','user_add_profile_fields.php','2023-06-09 13:40:56'),(704,'RainLab.UserPlus','script','1.0.2','user_add_location_fields.php','2023-06-09 13:40:56'),(705,'RainLab.UserPlus','comment','1.0.2','Reintroduce profile fields that were removed from User plugin','2023-06-09 13:40:56'),(706,'RainLab.UserPlus','script','1.0.3','user_add_mobile_field.php','2023-06-09 13:40:56'),(707,'RainLab.UserPlus','comment','1.0.3','Add mobile phone user profile field.','2023-06-09 13:40:56'),(708,'RainLab.UserPlus','comment','1.0.4','Add various languages and minor bug fixes.','2023-06-09 13:40:56'),(709,'RainLab.UserPlus','comment','1.1.0','Compatibility with Notify plugin.','2023-06-09 13:40:56'),(804,'TPS.Birzha','comment','1.0.1','First version of Birzha','2023-06-09 13:50:33'),(805,'TPS.Birzha','script','1.0.2','builder_table_create_tps_birzha_category.php','2023-06-09 13:50:33'),(806,'TPS.Birzha','comment','1.0.2','Created table tps_birzha_category','2023-06-09 13:50:33'),(807,'TPS.Birzha','script','1.0.3','builder_table_create_tps_birzha_product.php','2023-06-09 13:50:33'),(808,'TPS.Birzha','comment','1.0.3','Created table tps_birzha_product','2023-06-09 13:50:33'),(809,'TPS.Birzha','script','1.0.4','builder_table_update_tps_birzha_category.php','2023-06-09 13:50:33'),(810,'TPS.Birzha','comment','1.0.4','Updated table tps_birzha_category','2023-06-09 13:50:33'),(811,'TPS.Birzha','script','1.0.5','builder_table_create_tps_birzha_offer.php','2023-06-09 13:50:33'),(812,'TPS.Birzha','comment','1.0.5','Created table tps_birzha_offer','2023-06-09 13:50:33'),(813,'TPS.Birzha','script','1.0.6','builder_table_create_tps_birzha_measure.php','2023-06-09 13:50:33'),(814,'TPS.Birzha','comment','1.0.6','Created table tps_birzha_measure','2023-06-09 13:50:33'),(815,'TPS.Birzha','script','1.0.7','builder_table_update_tps_birzha_category_2.php','2023-06-09 13:50:33'),(816,'TPS.Birzha','comment','1.0.7','Updated table tps_birzha_category','2023-06-09 13:50:33'),(817,'TPS.Birzha','script','1.0.8','builder_table_update_tps_birzha_product.php','2023-06-09 13:50:33'),(818,'TPS.Birzha','comment','1.0.8','Updated table tps_birzha_product','2023-06-09 13:50:33'),(819,'TPS.Birzha','script','1.0.11','builder_table_create_tps_birzha_terms.php','2023-06-09 13:50:33'),(820,'TPS.Birzha','comment','1.0.11','Created table tps_birzha_terms','2023-06-09 13:50:33'),(821,'TPS.Birzha','script','1.0.12','builder_table_update_tps_birzha_offer.php','2023-06-09 13:50:33'),(822,'TPS.Birzha','comment','1.0.12','Updated table tps_birzha_offer','2023-06-09 13:50:33'),(823,'TPS.Birzha','script','1.0.13','builder_table_update_tps_birzha_product_2.php','2023-06-09 13:50:33'),(824,'TPS.Birzha','comment','1.0.13','Updated table tps_birzha_product','2023-06-09 13:50:33'),(825,'TPS.Birzha','script','1.0.14','builder_table_update_tps_birzha_category_3.php','2023-06-09 13:50:33'),(826,'TPS.Birzha','comment','1.0.14','Updated table tps_birzha_category','2023-06-09 13:50:33'),(827,'TPS.Birzha','script','1.0.15','builder_table_create_tps_birzha_product_categories.php','2023-06-09 13:50:33'),(828,'TPS.Birzha','comment','1.0.15','Created table tps_birzha_product_categories','2023-06-09 13:50:33'),(829,'TPS.Birzha','script','1.0.16','builder_table_update_tps_birzha_product_3.php','2023-06-09 13:50:33'),(830,'TPS.Birzha','comment','1.0.16','Updated table tps_birzha_product','2023-06-09 13:50:33'),(831,'TPS.Birzha','script','1.0.17','builder_table_update_tps_birzha_product_4.php','2023-06-09 13:50:33'),(832,'TPS.Birzha','comment','1.0.17','Updated table tps_birzha_product','2023-06-09 13:50:33'),(833,'TPS.Birzha','script','1.0.18','builder_table_update_tps_birzha_product_5.php','2023-06-09 13:50:33'),(834,'TPS.Birzha','comment','1.0.18','Updated table tps_birzha_product','2023-06-09 13:50:33'),(835,'TPS.Birzha','script','1.0.19','builder_table_update_tps_birzha_offer_2.php','2023-06-09 13:50:33'),(836,'TPS.Birzha','comment','1.0.19','Updated table tps_birzha_offer','2023-06-09 13:50:33'),(837,'TPS.Birzha','script','1.0.20','builder_table_update_tps_birzha_product_6.php','2023-06-09 13:50:33'),(838,'TPS.Birzha','comment','1.0.20','Updated table tps_birzha_product','2023-06-09 13:50:33'),(839,'TPS.Birzha','script','1.0.21','builder_table_update_tps_birzha_offer_3.php','2023-06-09 13:50:33'),(840,'TPS.Birzha','comment','1.0.21','Updated table tps_birzha_offer','2023-06-09 13:50:33'),(841,'TPS.Birzha','script','1.0.22','builder_table_create_tps_birzha_payment.php','2023-06-09 13:50:33'),(842,'TPS.Birzha','comment','1.0.22','Created table tps_birzha_payment','2023-06-09 13:50:33'),(843,'TPS.Birzha','script','1.0.23','builder_table_update_tps_birzha_offer_4.php','2023-06-09 13:50:33'),(844,'TPS.Birzha','comment','1.0.23','Updated table tps_birzha_offer','2023-06-09 13:50:33'),(845,'TPS.Birzha','script','1.0.24','builder_table_create_tps_birzha_currency.php','2023-06-09 13:50:33'),(846,'TPS.Birzha','comment','1.0.24','Created table tps_birzha_currency','2023-06-09 13:50:33'),(847,'TPS.Birzha','script','1.0.25','builder_table_update_tps_birzha_offer_5.php','2023-06-09 13:50:34'),(848,'TPS.Birzha','comment','1.0.25','Updated table tps_birzha_offer','2023-06-09 13:50:34'),(849,'TPS.Birzha','script','1.0.26','builder_table_update_tps_birzha_offer_6.php','2023-06-09 13:50:34'),(850,'TPS.Birzha','comment','1.0.26','Updated table tps_birzha_offer','2023-06-09 13:50:34'),(851,'TPS.Birzha','script','1.0.27','builder_table_update_tps_birzha_offer_7.php','2023-06-09 13:50:34'),(852,'TPS.Birzha','comment','1.0.27','Updated table tps_birzha_offer','2023-06-09 13:50:34'),(853,'TPS.Birzha','script','1.0.28','builder_table_update_tps_birzha_payment.php','2023-06-09 13:50:34'),(854,'TPS.Birzha','comment','1.0.28','Updated table tps_birzha_payment','2023-06-09 13:50:34'),(855,'TPS.Birzha','script','1.0.29','builder_table_update_tps_birzha_category_4.php','2023-06-09 13:50:34'),(856,'TPS.Birzha','comment','1.0.29','Updated table tps_birzha_category','2023-06-09 13:50:34'),(857,'TPS.Birzha','script','1.0.30','builder_table_update_tps_birzha_product_categories.php','2023-06-09 13:50:34'),(858,'TPS.Birzha','comment','1.0.30','Updated table tps_birzha_product_categories','2023-06-09 13:50:34'),(859,'TPS.Birzha','script','1.0.31','builder_table_update_tps_birzha_product_7.php','2023-06-09 13:50:34'),(860,'TPS.Birzha','comment','1.0.31','Updated table tps_birzha_product','2023-06-09 13:50:34'),(861,'TPS.Birzha','script','1.0.32','builder_table_update_tps_birzha_offer_8.php','2023-06-09 13:50:34'),(862,'TPS.Birzha','comment','1.0.32','Updated table tps_birzha_offer','2023-06-09 13:50:34'),(863,'TPS.Birzha','script','1.0.33','builder_table_create_tps_birzha_sliders.php','2023-06-09 13:50:34'),(864,'TPS.Birzha','comment','1.0.33','Created table tps_birzha_sliders','2023-06-09 13:50:34'),(865,'TPS.Birzha','script','1.0.34','builder_table_update_tps_birzha_product_8.php','2023-06-09 13:50:34'),(866,'TPS.Birzha','comment','1.0.34','Updated table tps_birzha_product','2023-06-09 13:50:34'),(867,'TPS.Birzha','script','1.0.35','builder_table_update_tps_birzha_offer_9.php','2023-06-09 13:50:34'),(868,'TPS.Birzha','comment','1.0.35','Updated table tps_birzha_offer','2023-06-09 13:50:34'),(869,'TPS.Birzha','script','1.0.36','builder_table_update_tps_birzha_product_9.php','2023-06-09 13:50:34'),(870,'TPS.Birzha','comment','1.0.36','Updated table tps_birzha_product','2023-06-09 13:50:34'),(871,'TPS.Birzha','script','1.0.37','builder_table_update_tps_birzha_countries.php','2023-06-09 13:50:34'),(872,'TPS.Birzha','comment','1.0.37','Updated table tps_birzha_product','2023-06-09 13:50:34'),(873,'TPS.Birzha','script','1.0.38','builder_table_update_tps_birzha_product_10.php','2023-06-09 13:50:34'),(874,'TPS.Birzha','comment','1.0.38','Updated table tps_birzha_countries','2023-06-09 13:50:34'),(875,'TPS.Birzha','script','1.0.39','builder_table_create_tps_birzha_countries.php','2023-06-09 13:50:34'),(876,'TPS.Birzha','comment','1.0.39','Created table tps_birzha_countries','2023-06-09 13:50:34'),(877,'TPS.Birzha','script','1.0.40','builder_table_update_tps_birzha_payments.php','2023-06-09 13:50:34'),(878,'TPS.Birzha','comment','1.0.40','Updated table tps_birzha_payment','2023-06-09 13:50:34'),(879,'TPS.Birzha','comment','1.0.41','Updated table tps_birzha_messages','2023-06-09 13:50:34'),(880,'TPS.Birzha','script','1.0.42','builder_table_update_tps_birzha_measures.php','2023-06-09 13:50:34'),(881,'TPS.Birzha','comment','1.0.42','Updated table tps_birzha_measure','2023-06-09 13:50:34'),(882,'TPS.Birzha','script','1.0.43','builder_table_update_tps_birzha_currencies.php','2023-06-09 13:50:34'),(883,'TPS.Birzha','comment','1.0.43','Updated table tps_birzha_currency','2023-06-09 13:50:34'),(884,'TPS.Birzha','script','1.0.44','builder_table_update_tps_birzha_offers.php','2023-06-09 13:50:34'),(885,'TPS.Birzha','comment','1.0.44','Updated table tps_birzha_offer','2023-06-09 13:50:34'),(886,'TPS.Birzha','script','1.0.45','builder_table_update_tps_birzha_products.php','2023-06-09 13:50:34'),(887,'TPS.Birzha','comment','1.0.45','Updated table tps_birzha_product','2023-06-09 13:50:34'),(888,'TPS.Birzha','script','1.0.46','builder_table_update_tps_birzha_categories.php','2023-06-09 13:50:34'),(889,'TPS.Birzha','comment','1.0.46','Updated table tps_birzha_category','2023-06-09 13:50:34'),(890,'TPS.Birzha','script','1.0.47','builder_table_create_tps_birzha_chatrooms.php','2023-06-09 13:50:34'),(891,'TPS.Birzha','comment','1.0.47','Created table tps_birzha_chatrooms','2023-06-09 13:50:34'),(892,'TPS.Birzha','script','1.0.48','builder_table_update_tps_birzha_chatrooms.php','2023-06-09 13:50:34'),(893,'TPS.Birzha','comment','1.0.48','Updated table tps_birzha_chatrooms','2023-06-09 13:50:34'),(894,'TPS.Birzha','script','1.0.49','builder_table_create_tps_birzha_chatrooms_users.php','2023-06-09 13:50:34'),(895,'TPS.Birzha','comment','1.0.49','Created table tps_birzha_chatrooms_users','2023-06-09 13:50:34'),(896,'TPS.Birzha','script','1.0.50','builder_table_update_tps_birzha_chatrooms_users.php','2023-06-09 13:50:34'),(897,'TPS.Birzha','comment','1.0.50','Updated table tps_birzha_chatrooms_users','2023-06-09 13:50:34'),(898,'TPS.Birzha','comment','1.0.52','Updated table tps_birzha_messages','2023-06-09 15:15:04'),(899,'TPS.Birzha','script','1.0.53','builder_table_update_tps_birzha_payments_2.php','2023-06-09 15:15:04'),(900,'TPS.Birzha','comment','1.0.53','Updated table tps_birzha_payments','2023-06-09 15:15:04'),(901,'TPS.Birzha','script','1.0.54','builder_table_update_tps_birzha_payments_3.php','2023-06-09 15:15:04'),(902,'TPS.Birzha','comment','1.0.54','Updated table tps_birzha_payments','2023-06-09 15:15:04'),(903,'TPS.Birzha','script','1.0.55','builder_table_update_tps_birzha_products_2.php','2023-06-09 15:15:04'),(904,'TPS.Birzha','comment','1.0.55','Updated table tps_birzha_products','2023-06-09 15:15:04'),(905,'TPS.Birzha','script','1.0.56','builder_table_update_tps_birzha_products_3.php','2023-06-09 15:15:05'),(906,'TPS.Birzha','comment','1.0.56','Updated table tps_birzha_products','2023-06-09 15:15:05'),(907,'TPS.Birzha','script','1.0.57','builder_table_update_tps_birzha_products_4.php','2023-06-09 15:15:05'),(908,'TPS.Birzha','comment','1.0.57','Updated table tps_birzha_products','2023-06-09 15:15:05'),(909,'TPS.Birzha','script','1.0.58','builder_table_update_tps_birzha_products_5.php','2023-06-09 15:15:05'),(910,'TPS.Birzha','comment','1.0.58','Updated table tps_birzha_products','2023-06-09 15:15:05'),(911,'TPS.Birzha','script','1.0.59','builder_table_update_tps_birzha_products_6.php','2023-06-09 15:15:05'),(912,'TPS.Birzha','comment','1.0.59','Updated table tps_birzha_products','2023-06-09 15:15:05'),(913,'TPS.Birzha','script','1.0.60','builder_table_update_tps_birzha_products_7.php','2023-06-09 15:15:05'),(914,'TPS.Birzha','comment','1.0.60','Updated table tps_birzha_products','2023-06-09 15:15:05'),(915,'TPS.Birzha','script','1.0.61','builder_table_update_tps_birzha_products_8.php','2023-06-09 15:15:05'),(916,'TPS.Birzha','comment','1.0.61','Updated table tps_birzha_products','2023-06-09 15:15:05'),(917,'TPS.Birzha','script','1.0.62','builder_table_update_tps_birzha_products_9.php','2023-06-09 15:15:05'),(918,'TPS.Birzha','comment','1.0.62','Updated table tps_birzha_products','2023-06-09 15:15:05'),(919,'TPS.Birzha','script','1.0.63','builder_table_update_tps_birzha_products_10.php','2023-06-09 15:15:05'),(920,'TPS.Birzha','comment','1.0.63','Updated table tps_birzha_products','2023-06-09 15:15:05'),(921,'TPS.Birzha','script','1.0.64','builder_table_update_tps_birzha_products_11.php','2023-06-09 15:15:05'),(922,'TPS.Birzha','comment','1.0.64','Updated table tps_birzha_products','2023-06-09 15:15:05'),(923,'TPS.Birzha','script','1.0.65','builder_table_update_tps_birzha_products_12.php','2023-06-09 15:15:05'),(924,'TPS.Birzha','comment','1.0.65','Updated table tps_birzha_products','2023-06-09 15:15:05'),(925,'TPS.Birzha','script','1.0.66','builder_table_update_tps_birzha_products_13.php','2023-06-09 15:15:05'),(926,'TPS.Birzha','comment','1.0.66','Updated table tps_birzha_products','2023-06-09 15:15:05'),(927,'TPS.Birzha','script','1.0.67','builder_table_update_tps_birzha_products_14.php','2023-06-09 15:15:05'),(928,'TPS.Birzha','comment','1.0.67','Updated table tps_birzha_products','2023-06-09 15:15:05'),(929,'TPS.Birzha','script','1.0.68','builder_table_update_tps_birzha_products_15.php','2023-06-09 15:15:05'),(930,'TPS.Birzha','comment','1.0.68','Updated table tps_birzha_products','2023-06-09 15:15:05'),(931,'TPS.Birzha','script','1.0.69','builder_table_update_tps_birzha_products_16.php','2023-06-09 15:15:05'),(932,'TPS.Birzha','comment','1.0.69','Updated table tps_birzha_products','2023-06-09 15:15:05'),(933,'TPS.Birzha','script','1.0.70','builder_table_update_tps_birzha_payments_4.php','2023-06-09 15:15:05'),(934,'TPS.Birzha','comment','1.0.70','Updated table tps_birzha_payments','2023-06-09 15:15:05'),(935,'TPS.Birzha','comment','1.0.71','Created table tps_birzha_publications_history','2023-06-09 15:15:05'),(936,'TPS.Birzha','script','1.0.72','builder_table_update_tps_birzha_products_17.php','2023-06-09 15:15:06'),(937,'TPS.Birzha','comment','1.0.72','Updated table tps_birzha_products','2023-06-09 15:15:06'),(938,'TPS.Birzha','script','1.0.73','builder_table_delete_tps_birzha_offers.php','2023-06-09 15:15:06'),(939,'TPS.Birzha','comment','1.0.73','Drop table tps_birzha_offers','2023-06-09 15:15:06'),(940,'TPS.Birzha','script','1.0.74','builder_table_update_tps_birzha_products_18.php','2023-06-09 15:15:06'),(941,'TPS.Birzha','comment','1.0.74','Updated table tps_birzha_products','2023-06-09 15:15:06'),(942,'TPS.Birzha','script','1.0.75','builder_table_update_tps_birzha_products_19.php','2023-06-09 15:15:06'),(943,'TPS.Birzha','comment','1.0.75','Updated table tps_birzha_products','2023-06-09 15:15:06'),(944,'TPS.Birzha','script','1.0.76','builder_table_update_tps_birzha_products_20.php','2023-06-09 15:15:06'),(945,'TPS.Birzha','comment','1.0.76','Updated table tps_birzha_products','2023-06-09 15:15:06'),(946,'TPS.Birzha','script','1.0.77','builder_table_update_tps_birzha_products_21.php','2023-06-09 15:15:06'),(947,'TPS.Birzha','comment','1.0.77','Updated table tps_birzha_products','2023-06-09 15:15:06'),(948,'TPS.Birzha','script','1.0.78','builder_table_update_tps_birzha_products_22.php','2023-06-09 15:15:06'),(949,'TPS.Birzha','comment','1.0.78','Updated table tps_birzha_products','2023-06-09 15:15:06'),(950,'TPS.Birzha','script','1.0.79','builder_table_update_tps_birzha_products_23.php','2023-06-09 15:15:06'),(951,'TPS.Birzha','comment','1.0.79','Updated table tps_birzha_products','2023-06-09 15:15:06'),(952,'TPS.Birzha','script','1.0.80','builder_table_update_tps_birzha_products_24.php','2023-06-09 15:15:06'),(953,'TPS.Birzha','comment','1.0.80','Updated table tps_birzha_products','2023-06-09 15:15:06'),(954,'TPS.Birzha','script','1.0.81','builder_table_create_tps_birzha_transactions.php','2023-06-09 15:15:06'),(955,'TPS.Birzha','comment','1.0.81','Created table tps_birzha_transactions','2023-06-09 15:15:06'),(956,'TPS.Birzha','script','1.0.82','builder_table_update_tps_birzha_transactions.php','2023-06-09 15:15:06'),(957,'TPS.Birzha','comment','1.0.82','Updated table tps_birzha_transactions','2023-06-09 15:15:06'),(958,'TPS.Birzha','script','1.0.83','builder_table_update_tps_birzha_transactions_2.php','2023-06-09 15:15:06'),(959,'TPS.Birzha','comment','1.0.83','Updated table tps_birzha_transactions','2023-06-09 15:15:06'),(960,'TPS.Birzha','script','1.0.84','builder_table_update_tps_birzha_transactions_3.php','2023-06-09 15:15:06'),(961,'TPS.Birzha','comment','1.0.84','Updated decimal table tps_birzha_transactions','2023-06-09 15:15:06'),(962,'TPS.Birzha','script','1.0.85','builder_table_create_tps_birzha_contactform_messages.php','2023-06-09 15:15:06'),(963,'TPS.Birzha','comment','1.0.85','Created table tps_birzha_contactform_messages','2023-06-09 15:15:06'),(964,'TPS.Birzha','script','1.0.86','builder_table_update_tps_birzha_contactform_messages.php','2023-06-09 15:15:06'),(965,'TPS.Birzha','comment','1.0.86','Updated table tps_birzha_contactform_messages','2023-06-09 15:15:06'),(966,'TPS.Birzha','script','1.0.87','builder_table_update_tps_birzha_contactform_messages_2.php','2023-06-09 15:15:07'),(967,'TPS.Birzha','comment','1.0.87','Updated table tps_birzha_contactform_messages','2023-06-09 15:15:07'),(968,'TPS.Birzha','script','1.0.88','builder_table_create_tps_birzha_exchange_requests.php','2023-06-09 15:15:07'),(969,'TPS.Birzha','comment','1.0.88','Created table tps_birzha_exchange_requests','2023-06-09 15:15:07'),(970,'TPS.Birzha','script','1.0.89','builder_table_update_tps_birzha_exchange_requests.php','2023-06-09 15:15:07'),(971,'TPS.Birzha','comment','1.0.89','Updated table tps_birzha_exchange_requests','2023-06-09 15:15:07'),(972,'TPS.Birzha','script','1.0.90','builder_table_update_tps_birzha_exchange_requests_2.php','2023-06-09 15:15:07'),(973,'TPS.Birzha','comment','1.0.90','Updated table tps_birzha_exchange_requests','2023-06-09 15:15:07'),(974,'TPS.Birzha','script','1.0.91','builder_table_update_tps_birzha_exchange_requests_3.php','2023-06-09 15:15:07'),(975,'TPS.Birzha','comment','1.0.91','Updated table tps_birzha_exchange_requests','2023-06-09 15:15:07'),(976,'TPS.Birzha','script','1.0.94','builder_table_update_users_table_18_01_2022_14_26.php','2023-06-09 15:15:07'),(977,'TPS.Birzha','comment','1.0.94','Updated table users','2023-06-09 15:15:07'),(978,'TPS.Birzha','script','1.0.95','builder_table_update_users_table_02_02_2022_16_55.php','2023-06-09 15:19:35'),(979,'TPS.Birzha','comment','1.0.95','Updated table users','2023-06-09 15:19:35'),(980,'TPS.Birzha','script','1.0.96','builder_table_update_users_table_03_02_2022_17_12.php','2023-06-09 15:19:35'),(981,'TPS.Birzha','comment','1.0.96','Updated table users','2023-06-09 15:19:35'),(982,'TPS.Birzha','script','1.0.97','builder_table_update_users_table_04_02_2022_15_20.php','2023-06-09 15:19:35'),(983,'TPS.Birzha','comment','1.0.97','Updated table users','2023-06-09 15:19:35'),(984,'TPS.Birzha','script','1.0.98','builder_table_update_tps_birzha_payments_5.php','2023-06-09 15:19:35'),(985,'TPS.Birzha','comment','1.0.98','Updated table tps_birzha_payments','2023-06-09 15:19:35'),(986,'TPS.Birzha','script','1.0.99','builder_table_update_tps_birzha_products_25.php','2023-06-09 15:19:35'),(987,'TPS.Birzha','comment','1.0.99','Updated table tps_birzha_products','2023-06-09 15:19:35'),(988,'TPS.Birzha','script','1.0.100','builder_table_create_tps_birzha_docs.php','2023-06-09 15:19:35'),(989,'TPS.Birzha','comment','1.0.100','Created table tps_birzha_docs','2023-06-09 15:19:35'),(990,'TPS.Birzha','script','1.0.101','builder_table_update_tps_birzha_docs.php','2023-06-09 15:19:35'),(991,'TPS.Birzha','comment','1.0.101','Updated table tps_birzha_docs','2023-06-09 15:19:35'),(992,'TPS.Birzha','script','1.0.102','builder_table_update_tps_birzha_docs_2.php','2023-06-09 15:19:35'),(993,'TPS.Birzha','comment','1.0.102','Updated table tps_birzha_docs','2023-06-09 15:19:35'),(994,'TPS.Birzha','script','1.0.103','builder_table_delete_tps_birzha_docs.php','2023-06-09 15:19:35'),(995,'TPS.Birzha','comment','1.0.103','Drop table tps_birzha_docs','2023-06-09 15:19:35'),(996,'TPS.Birzha','script','1.0.104','builder_table_create_tps_birzha_docs_one.php','2023-06-09 15:19:36'),(997,'TPS.Birzha','comment','1.0.104','Created table tps_birzha_docs_one','2023-06-09 15:19:36'),(998,'TPS.Birzha','script','1.0.105','builder_table_update_tps_birzha_docs_one.php','2023-06-09 15:19:36'),(999,'TPS.Birzha','comment','1.0.105','Updated table tps_birzha_docs_one','2023-06-09 15:19:36'),(1000,'TPS.Birzha','script','1.0.106','builder_table_update_tps_birzha_products_26.php','2023-06-09 15:19:36'),(1001,'TPS.Birzha','comment','1.0.106','Updated table tps_birzha_products','2023-06-09 15:19:36'),(1002,'Vdomah.JWTAuth','comment','1.0.0','Initialize plugin.','2023-06-09 15:19:36'),(1003,'Vdomah.JWTAuth','comment','1.0.1','Custom service provider and config file added.','2023-06-09 15:19:36'),(1004,'Vdomah.JWTAuth','comment','1.0.2','Compability with OctoberCMS builds > 419 (Laravel 5.5)','2023-06-09 15:19:36'),(1005,'Vdomah.JWTAuth','comment','1.0.3','README.md updated','2023-06-09 15:19:36'),(1006,'Vdomah.JWTAuth','comment','1.0.4','Ability to define own set of user attributes in response.','2023-06-09 15:19:36'),(1007,'Vdomah.JWTAuth','comment','1.0.5','/refresh and /invalidate endpoints back.','2023-06-09 15:19:36'),(1008,'Vdomah.JWTAuth','comment','1.0.6','Update README about creating route in another plugin.','2023-06-09 15:19:36'),(1009,'Vdomah.JWTAuth','comment','1.0.7','Compability with OctoberCMS builds > 454 (Authenticatable trait removed)','2023-06-09 15:19:36'),(1010,'Vdomah.JWTAuth','comment','1.0.8','JWT Authentication Secret default value removed from config file. README updated about how to generate the secret.','2023-06-09 15:19:36'),(1011,'Vdomah.JWTAuth','comment','1.0.9','!!! Generate JWT Authentication Secret using php artisan jwt:generate and assign generated value to JWT_SECRET in .env','2023-06-09 15:19:36'),(1012,'Vdomah.JWTAuth','comment','1.0.10','Backend settings to set secret key, signup/login configurable request params.','2023-06-09 15:19:36'),(1013,'Vdomah.JWTAuth','comment','1.0.11','!!! auth.php copying to root/config/ is not required any more. .env options support added to override auth.php and config.php','2023-06-09 15:19:36'),(1014,'Vdomah.JWTAuth','comment','1.0.12','Possibility to disable each endpoint in backend settings','2023-06-09 15:19:36'),(1015,'AhmadFatoni.ApiGenerator','comment','1.0.1','Initialize plugin.','2023-06-09 15:19:36'),(1016,'AhmadFatoni.ApiGenerator','comment','1.0.2','Database implementation','2023-06-09 15:19:36'),(1017,'AhmadFatoni.ApiGenerator','script','1.0.3','builder_table_create_ahmadfatoni_apigenerator_data.php','2023-06-09 15:19:36'),(1018,'AhmadFatoni.ApiGenerator','comment','1.0.3','add builder plugin on requirements dependency','2023-06-09 15:19:36'),(1019,'AhmadFatoni.ApiGenerator','comment','1.0.4','fixing bug on PHP 7','2023-06-09 15:19:36'),(1020,'AhmadFatoni.ApiGenerator','comment','1.0.5','fixing bug on request delete data','2023-06-09 15:19:36'),(1021,'AhmadFatoni.ApiGenerator','comment','1.0.6','fixing bug on generate endpoint','2023-06-09 15:19:36'),(1022,'AhmadFatoni.ApiGenerator','comment','1.0.7','fixing bug on October CMS v1.0.456','2023-06-09 15:19:36'),(1023,'Indikator.DevTools','comment','1.0.0','First version of Developer Tools.','2023-07-23 05:16:41'),(1024,'Indikator.DevTools','comment','1.1.0','Edit plugins with the code editor.','2023-07-23 05:16:41'),(1025,'Indikator.DevTools','comment','1.1.1','Translate some English texts.','2023-07-23 05:16:41'),(1026,'Indikator.DevTools','comment','1.1.2','Fixed the Create file issue.','2023-07-23 05:16:41'),(1027,'Indikator.DevTools','comment','1.1.3','Added new icon for main navigation.','2023-07-23 05:16:41'),(1028,'Indikator.DevTools','comment','1.1.4','Show the PHP\'s configuration.','2023-07-23 05:16:41'),(1029,'Indikator.DevTools','comment','1.1.5','Minor code improvements and bugfix.','2023-07-23 05:16:41'),(1030,'Indikator.DevTools','comment','1.1.6','The top menu icon shows again.','2023-07-23 05:16:41'),(1031,'Indikator.DevTools','comment','1.1.7','Fixed the Create folder issue.','2023-07-23 05:16:41'),(1032,'Indikator.DevTools','comment','1.1.8','!!! Updated for October 420+.','2023-07-23 05:16:41'),(1033,'Indikator.DevTools','comment','1.1.9','Updated the main navigation icon.','2023-07-23 05:16:41'),(1034,'Indikator.DevTools','comment','1.1.9','Added last modified date.','2023-07-23 05:16:41'),(1035,'Indikator.DevTools','comment','1.2.0','The syntax highlighting works again!','2023-07-23 05:16:41'),(1036,'Indikator.DevTools','comment','1.2.1','Help links open in a new window.','2023-07-23 05:16:41'),(1037,'Indikator.DevTools','comment','1.2.2','Fixed the dependency bug in asset list.','2023-07-23 05:16:41'),(1038,'Indikator.DevTools','comment','1.2.3','The file delete operation works again.','2023-07-23 05:16:41'),(1039,'TPS.Birzha','script','1.0.107','builder_table_create_tps_birzha_slider_app.php','2023-07-23 05:20:25'),(1040,'TPS.Birzha','comment','1.0.107','Created table tps_birzha_slider_app','2023-07-23 05:20:25'),(1041,'TPS.Birzha','script','1.0.108','builder_table_update_tps_birzha_slider_app.php','2023-07-23 05:25:40'),(1042,'TPS.Birzha','comment','1.0.108','Updated table tps_birzha_slider_app','2023-07-23 05:25:40'),(1043,'TPS.Birzha','script','1.0.109','builder_table_update_tps_birzha_slider_app_2.php','2023-07-23 12:07:45'),(1044,'TPS.Birzha','comment','1.0.109','Updated table tps_birzha_slider_app','2023-07-23 12:07:45'),(1045,'TPS.Birzha','script','1.0.110','builder_table_update_tps_birzha_categories_2.php','2023-07-23 12:16:58'),(1046,'TPS.Birzha','comment','1.0.110','Updated table tps_birzha_categories','2023-07-23 12:16:58'),(1047,'RainLab.User','comment','1.5.5','Updated settings icon and description.','2023-07-24 11:03:55'),(1048,'RainLab.User','comment','1.6.0','Apply persistence settings on activation and registration. Fixes last seen touched when impersonating. Fixes user suspension not clearing.','2023-07-24 11:03:55'),(1049,'RainLab.User','comment','1.6.1','Adds component property for resetPage in ResetPassword component.','2023-07-24 11:03:55'),(1050,'RainLab.User','comment','1.6.2','Improve support with October v3','2023-07-24 11:03:55'),(1051,'RainLab.User','comment','1.6.3','Fixes mail blocker logic','2023-07-24 11:03:55'),(1052,'RainLab.User','comment','1.6.4','Fixes bulk action button with October v3','2023-07-24 11:03:55'),(1053,'RainLab.User','comment','1.7.0','Add password policy','2023-07-24 11:03:55'),(1054,'RainLab.User','comment','1.7.1','Fixes compatibility with legacy sites','2023-07-24 11:03:55'),(1055,'RainLab.User','comment','1.7.2','Stability fixes','2023-07-24 11:03:55');
/*!40000 ALTER TABLE `system_plugin_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_plugin_versions`
--
DROP TABLE IF EXISTS `system_plugin_versions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_plugin_versions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`version` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`is_disabled` tinyint(1) NOT NULL DEFAULT '0',
`is_frozen` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `system_plugin_versions_code_index` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_plugin_versions`
--
LOCK TABLES `system_plugin_versions` WRITE;
/*!40000 ALTER TABLE `system_plugin_versions` DISABLE KEYS */;
INSERT INTO `system_plugin_versions` VALUES (2,'JanVince.SmallContactForm','1.63.3','2023-06-09 13:21:42',0,0),(3,'Martin.Forms','1.5.1','2023-06-09 13:21:43',0,0),(4,'OFFLINE.CORS','1.0.7','2023-06-09 13:21:43',0,0),(5,'OFFLINE.SiteSearch','1.5.6','2023-06-09 13:21:43',0,0),(6,'October.Drivers','1.1.3','2023-06-09 13:21:43',0,0),(7,'RainLab.Blog','1.5.1','2023-06-09 13:40:51',0,0),(8,'RainLab.Builder','1.1.0','2023-06-09 13:40:51',0,0),(9,'RainLab.Location','1.2.1','2023-06-09 13:40:53',0,0),(10,'RainLab.Notify','1.1.0','2023-06-09 13:40:54',0,0),(11,'RainLab.Pages','1.4.10','2023-06-09 13:40:54',0,0),(12,'RainLab.Translate','1.9.3','2023-06-09 13:40:55',0,0),(13,'RainLab.User','1.7.2','2023-07-24 11:03:55',0,0),(14,'RainLab.UserPlus','1.1.0','2023-06-09 13:40:56',0,0),(16,'TPS.Birzha','1.0.110','2023-07-23 12:16:58',0,0),(17,'Vdomah.JWTAuth','1.0.12','2023-06-09 15:19:36',0,0),(18,'AhmadFatoni.ApiGenerator','1.0.7','2023-06-09 15:19:36',0,0),(19,'Indikator.DevTools','1.2.3','2023-07-23 05:16:41',0,0);
/*!40000 ALTER TABLE `system_plugin_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_request_logs`
--
DROP TABLE IF EXISTS `system_request_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_request_logs` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`status_code` int DEFAULT NULL,
`url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`referer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`count` int NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_request_logs`
--
LOCK TABLES `system_request_logs` WRITE;
/*!40000 ALTER TABLE `system_request_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `system_request_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_revisions`
--
DROP TABLE IF EXISTS `system_revisions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_revisions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int unsigned DEFAULT NULL,
`field` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cast` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`old_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`new_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`revisionable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`revisionable_id` int NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `system_revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`),
KEY `system_revisions_user_id_index` (`user_id`),
KEY `system_revisions_field_index` (`field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_revisions`
--
LOCK TABLES `system_revisions` WRITE;
/*!40000 ALTER TABLE `system_revisions` DISABLE KEYS */;
/*!40000 ALTER TABLE `system_revisions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_settings`
--
DROP TABLE IF EXISTS `system_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_settings` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`item` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `system_settings_item_index` (`item`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_settings`
--
LOCK TABLES `system_settings` WRITE;
/*!40000 ALTER TABLE `system_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `system_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_categories`
--
DROP TABLE IF EXISTS `tps_birzha_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_categories` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`meta_desc` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`icon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
`slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`sort_order` int NOT NULL DEFAULT '0',
`is_featured` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_categories`
--
LOCK TABLES `tps_birzha_categories` WRITE;
/*!40000 ALTER TABLE `tps_birzha_categories` DISABLE KEYS */;
INSERT INTO `tps_birzha_categories` VALUES (1,NULL,'2023-07-23 12:15:21','2023-07-23 12:28:17','Eýwanlar','','/Categories/Component 4.png',1,'eywanlar',1,1),(2,NULL,'2023-07-23 12:28:59','2023-07-24 11:18:09','Agaç Önümleri','','/Categories/Component 2.png',1,'agac-onumleri',2,0),(3,NULL,'2023-07-23 12:29:40','2023-07-23 12:29:40','Gipsler','','/Categories/Component 3.png',1,'gipsler',3,1),(4,NULL,'2023-07-23 12:30:10','2023-07-23 12:30:10','3D Modeller','','/Categories/Component 5.png',1,'3d-modeller',5,1),(5,NULL,'2023-07-23 12:30:32','2023-07-23 12:30:32','Turba Önümleri','','/Categories/Component 6.png',1,'turba-onumleri',6,1);
/*!40000 ALTER TABLE `tps_birzha_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_chatrooms`
--
DROP TABLE IF EXISTS `tps_birzha_chatrooms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_chatrooms` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_chatrooms`
--
LOCK TABLES `tps_birzha_chatrooms` WRITE;
/*!40000 ALTER TABLE `tps_birzha_chatrooms` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_chatrooms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_chatrooms_users`
--
DROP TABLE IF EXISTS `tps_birzha_chatrooms_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_chatrooms_users` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`chatroom_id` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_chatrooms_users`
--
LOCK TABLES `tps_birzha_chatrooms_users` WRITE;
/*!40000 ALTER TABLE `tps_birzha_chatrooms_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_chatrooms_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_contactform_messages`
--
DROP TABLE IF EXISTS `tps_birzha_contactform_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_contactform_messages` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`surname` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`mobile` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_contactform_messages`
--
LOCK TABLES `tps_birzha_contactform_messages` WRITE;
/*!40000 ALTER TABLE `tps_birzha_contactform_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_contactform_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_countries`
--
DROP TABLE IF EXISTS `tps_birzha_countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_countries` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_countries`
--
LOCK TABLES `tps_birzha_countries` WRITE;
/*!40000 ALTER TABLE `tps_birzha_countries` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_currencies`
--
DROP TABLE IF EXISTS `tps_birzha_currencies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_currencies` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_currencies`
--
LOCK TABLES `tps_birzha_currencies` WRITE;
/*!40000 ALTER TABLE `tps_birzha_currencies` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_currencies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_docs_one`
--
DROP TABLE IF EXISTS `tps_birzha_docs_one`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_docs_one` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`section_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`section_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`section_docs` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`lang` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_docs_one`
--
LOCK TABLES `tps_birzha_docs_one` WRITE;
/*!40000 ALTER TABLE `tps_birzha_docs_one` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_docs_one` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_exchange_requests`
--
DROP TABLE IF EXISTS `tps_birzha_exchange_requests`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_exchange_requests` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`payed_for_request` decimal(10,2) NOT NULL,
`user_id` int NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`content` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`currency` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`total_price` decimal(10,2) NOT NULL,
`converted_to_tmt` decimal(10,2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_exchange_requests`
--
LOCK TABLES `tps_birzha_exchange_requests` WRITE;
/*!40000 ALTER TABLE `tps_birzha_exchange_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_exchange_requests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_measures`
--
DROP TABLE IF EXISTS `tps_birzha_measures`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_measures` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_measures`
--
LOCK TABLES `tps_birzha_measures` WRITE;
/*!40000 ALTER TABLE `tps_birzha_measures` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_measures` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_payments`
--
DROP TABLE IF EXISTS `tps_birzha_payments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_payments` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`user_id` int NOT NULL,
`amount` decimal(10,2) NOT NULL,
`payment_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`bank_file` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`order_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`card_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_payments`
--
LOCK TABLES `tps_birzha_payments` WRITE;
/*!40000 ALTER TABLE `tps_birzha_payments` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_payments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_product_categories`
--
DROP TABLE IF EXISTS `tps_birzha_product_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_product_categories` (
`product_id` int NOT NULL,
`category_id` int NOT NULL,
PRIMARY KEY (`product_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_product_categories`
--
LOCK TABLES `tps_birzha_product_categories` WRITE;
/*!40000 ALTER TABLE `tps_birzha_product_categories` DISABLE KEYS */;
INSERT INTO `tps_birzha_product_categories` VALUES (1,3),(2,1),(3,2);
/*!40000 ALTER TABLE `tps_birzha_product_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_products`
--
DROP TABLE IF EXISTS `tps_birzha_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_products` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status_note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`mark` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sort_roder` int NOT NULL DEFAULT '0',
`manufacturer` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`ends_at` datetime DEFAULT NULL,
`quantity` decimal(10,2) DEFAULT NULL,
`measure_id` int DEFAULT NULL,
`price` decimal(10,2) DEFAULT NULL,
`currency_id` int DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`payment_term_id` int DEFAULT NULL,
`delivery_term_id` int DEFAULT NULL,
`place` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`packaging` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`vendor_id` int DEFAULT NULL,
`payment_id` int DEFAULT NULL,
`payed_fee_for_publ` decimal(10,2) DEFAULT NULL,
`market_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`number_of_views` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_products`
--
LOCK TABLES `tps_birzha_products` WRITE;
/*!40000 ALTER TABLE `tps_birzha_products` DISABLE KEYS */;
INSERT INTO `tps_birzha_products` VALUES (1,'2023-07-23 08:29:22','2023-07-24 08:29:42',NULL,'Test Haryt ady','approved','test-haryt-ady','','Bezeg HK',0,NULL,'2023-07-31 13:11:44',200.00,NULL,300.00,NULL,'Metri 300 manatdan gips onumlerii',NULL,NULL,'Ashgabat, 5 ayak',NULL,2,NULL,NULL,NULL,NULL,0),(2,'2023-07-24 08:28:00','2023-07-24 08:30:25',NULL,'Eywan satlyk','approved','eywan-satlyk','','Hilli HJ',0,NULL,'2023-07-24 13:28:50',200.00,NULL,300.00,NULL,'Yakary hilli eywanlar aljaklar jan etsin',NULL,NULL,'Ahal',NULL,2,NULL,NULL,NULL,NULL,0),(3,'2023-07-24 09:56:03','2023-07-24 09:56:46',NULL,'asdasd','new','asdasd','','asd',0,NULL,'2023-07-29 14:55:59',11.00,NULL,12.00,NULL,'asdasd',NULL,NULL,'asdasd',NULL,2,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `tps_birzha_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_slider_app`
--
DROP TABLE IF EXISTS `tps_birzha_slider_app`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_slider_app` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`img` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'slider1',
`note` text COLLATE utf8mb4_unicode_ci,
`order` int DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_slider_app`
--
LOCK TABLES `tps_birzha_slider_app` WRITE;
/*!40000 ALTER TABLE `tps_birzha_slider_app` DISABLE KEYS */;
INSERT INTO `tps_birzha_slider_app` VALUES (1,'2023-07-23 05:35:14','2023-07-24 11:14:01',NULL,'/slider1/ezgif-5-08c19593c4.jpg','slider1','',1),(2,'2023-07-23 05:35:24','2023-07-24 11:13:12',NULL,'/slider1/ezgif-5-0c28c27db8.jpg','slider2','',1),(3,'2023-07-23 05:35:32','2023-07-23 12:10:29',NULL,'/slider1/ezgif-5-3dc2309fae.jpg','slider2','',1),(4,'2023-07-23 05:35:45','2023-07-23 12:10:33',NULL,'/slider1/ezgif-5-9b4482eca4.jpg','slider2','',2),(5,'2023-07-23 05:35:57','2023-07-23 12:10:38',NULL,'/slider1/ezgif-5-d4c45d4a99.jpg','banner','',1),(6,'2023-07-23 12:06:51','2023-07-23 13:07:57',NULL,'/slider1/ezgif-5-e10220e629.jpg','slider1','',2),(7,'2023-07-24 11:14:38','2023-07-24 11:14:38',NULL,'/slider1/ezgif-5-9b4482eca4.jpg','slider1','',4);
/*!40000 ALTER TABLE `tps_birzha_slider_app` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_sliders`
--
DROP TABLE IF EXISTS `tps_birzha_sliders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_sliders` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slide_items` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_sliders`
--
LOCK TABLES `tps_birzha_sliders` WRITE;
/*!40000 ALTER TABLE `tps_birzha_sliders` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_sliders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_terms`
--
DROP TABLE IF EXISTS `tps_birzha_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_terms` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_terms`
--
LOCK TABLES `tps_birzha_terms` WRITE;
/*!40000 ALTER TABLE `tps_birzha_terms` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_transactions`
--
DROP TABLE IF EXISTS `tps_birzha_transactions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_transactions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`amount` decimal(10,2) NOT NULL DEFAULT '0.00',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`transactable_id` int DEFAULT NULL,
`transactable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int NOT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_transactions`
--
LOCK TABLES `tps_birzha_transactions` WRITE;
/*!40000 ALTER TABLE `tps_birzha_transactions` DISABLE KEYS */;
INSERT INTO `tps_birzha_transactions` VALUES (1,0.00,'2023-07-24 09:56:46','2023-07-24 09:56:46',3,'TPS\\Birzha\\Models\\Product',2,'Lot #3 asdasd haryt ucin tutym.');
/*!40000 ALTER TABLE `tps_birzha_transactions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_user_sliders`
--
DROP TABLE IF EXISTS `tps_birzha_user_sliders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_user_sliders` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int DEFAULT NULL,
`img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_user_sliders`
--
LOCK TABLES `tps_birzha_user_sliders` WRITE;
/*!40000 ALTER TABLE `tps_birzha_user_sliders` DISABLE KEYS */;
INSERT INTO `tps_birzha_user_sliders` VALUES (1,2,'/sliders/8.jpg','','2023-07-24 06:26:55','2023-07-24 06:33:41',NULL),(2,1,'/sliders/8.jpg','','2023-07-24 06:35:30','2023-07-24 06:35:30',NULL);
/*!40000 ALTER TABLE `tps_birzha_user_sliders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_users_categories`
--
DROP TABLE IF EXISTS `tps_birzha_users_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_users_categories` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`category_id` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_users_categories`
--
LOCK TABLES `tps_birzha_users_categories` WRITE;
/*!40000 ALTER TABLE `tps_birzha_users_categories` DISABLE KEYS */;
INSERT INTO `tps_birzha_users_categories` VALUES (1,2,1),(2,2,2),(3,2,3);
/*!40000 ALTER TABLE `tps_birzha_users_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_groups`
--
DROP TABLE IF EXISTS `user_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_groups` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_groups_code_index` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_groups`
--
LOCK TABLES `user_groups` WRITE;
/*!40000 ALTER TABLE `user_groups` DISABLE KEYS */;
INSERT INTO `user_groups` VALUES (1,'Guest','guest','Default group for guest users.','2023-06-09 13:40:55','2023-06-09 13:40:55'),(2,'Registered','registered','Default group for registered users.','2023-06-09 13:40:56','2023-06-09 13:40:56');
/*!40000 ALTER TABLE `user_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_throttle`
--
DROP TABLE IF EXISTS `user_throttle`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_throttle` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int unsigned DEFAULT NULL,
`ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`attempts` int NOT NULL DEFAULT '0',
`last_attempt_at` timestamp NULL DEFAULT NULL,
`is_suspended` tinyint(1) NOT NULL DEFAULT '0',
`suspended_at` timestamp NULL DEFAULT NULL,
`is_banned` tinyint(1) NOT NULL DEFAULT '0',
`banned_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_throttle_user_id_index` (`user_id`),
KEY `user_throttle_ip_address_index` (`ip_address`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_throttle`
--
LOCK TABLES `user_throttle` WRITE;
/*!40000 ALTER TABLE `user_throttle` DISABLE KEYS */;
INSERT INTO `user_throttle` VALUES (1,2,NULL,0,NULL,0,NULL,0,NULL),(2,3,NULL,0,NULL,0,NULL,0,NULL);
/*!40000 ALTER TABLE `user_throttle` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`activation_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`persist_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reset_password_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`is_activated` tinyint(1) NOT NULL DEFAULT '0',
`activated_at` timestamp NULL DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`username` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`surname` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`last_seen` timestamp NULL DEFAULT NULL,
`is_guest` tinyint(1) NOT NULL DEFAULT '0',
`is_superuser` tinyint(1) NOT NULL DEFAULT '0',
`created_ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`logo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`shop_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slogan` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`work_time` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`map` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_instagram` tinyint(1) NOT NULL DEFAULT '0',
`note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sliders` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`is_featured` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`),
UNIQUE KEY `users_login_unique` (`username`),
KEY `users_activation_code_index` (`activation_code`),
KEY `users_reset_password_code_index` (`reset_password_code`),
KEY `users_login_index` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (2,'Shohrat','65809786','$2y$10$RI6bNcsc2tzw2pfcY6MB8e4gdu5639fuyUbxS8/aJ1IC/rzYiFi4K',NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-07-24 01:55:49','2023-07-24 11:17:06','65809786','',NULL,NULL,0,0,NULL,NULL,'bussiness','/accounts/Cards.jpg','Bezeg Eshikleri','Yokary hilli Harytlar','09:00 - 18:00','','',0,NULL,NULL,0),(3,'Shageldi','65123123','$2y$10$MeO6aQd/aUVxTaWvschjB.hU4oZKiogBjexxWo2tSiHwGmGCSIxW.',NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-07-24 07:33:18','2023-07-24 07:33:44','65123123','Test',NULL,NULL,0,0,NULL,NULL,'simple','/accounts/Cards2.jpg','Shageldi Harytlary','asdas asdasd','09:30 - 19:00','','',0,NULL,NULL,1);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users_groups`
--
DROP TABLE IF EXISTS `users_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users_groups` (
`user_id` int unsigned NOT NULL,
`user_group_id` int unsigned NOT NULL,
PRIMARY KEY (`user_id`,`user_group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users_groups`
--
LOCK TABLES `users_groups` WRITE;
/*!40000 ALTER TABLE `users_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `users_groups` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-07-28 1:20:44