diff --git a/gurlushyk.sql b/gurlushyk.sql new file mode 100644 index 0000000..7b43779 --- /dev/null +++ b/gurlushyk.sql @@ -0,0 +1,4255 @@ +-- ------------------------------------------------------------- +-- TablePlus 4.7.1(428) +-- +-- https://tableplus.com/ +-- +-- Database: gurlushyk +-- Generation Time: 2023-07-23 11:17:16.1870 +-- ------------------------------------------------------------- + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!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 */; + + +DROP TABLE IF EXISTS `ahmadfatoni_apigenerator_data`; +CREATE TABLE `ahmadfatoni_apigenerator_data` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `endpoint` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `model` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `custom_format` text COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `backend_access_log`; +CREATE TABLE `backend_access_log` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned NOT NULL, + `ip_address` varchar(191) 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=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `backend_user_groups`; +CREATE TABLE `backend_user_groups` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text 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; + +DROP TABLE IF EXISTS `backend_user_preferences`; +CREATE TABLE `backend_user_preferences` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned NOT NULL, + `namespace` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `group` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `item` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, + `value` text 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; + +DROP TABLE IF EXISTS `backend_user_roles`; +CREATE TABLE `backend_user_roles` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text COLLATE utf8mb4_unicode_ci, + `permissions` text 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; + +DROP TABLE IF EXISTS `backend_user_throttle`; +CREATE TABLE `backend_user_throttle` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned DEFAULT NULL, + `ip_address` varchar(191) 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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `backend_users`; +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; + +DROP TABLE IF EXISTS `backend_users_groups`; +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; + +DROP TABLE IF EXISTS `cache`; +CREATE TABLE `cache` ( + `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `value` longtext 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; + +DROP TABLE IF EXISTS `cms_theme_data`; +CREATE TABLE `cms_theme_data` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `theme` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `data` mediumtext 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; + +DROP TABLE IF EXISTS `cms_theme_logs`; +CREATE TABLE `cms_theme_logs` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `theme` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `template` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `old_template` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content` longtext COLLATE utf8mb4_unicode_ci, + `old_content` longtext 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; + +DROP TABLE IF EXISTS `cms_theme_templates`; +CREATE TABLE `cms_theme_templates` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `source` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `content` longtext 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; + +DROP TABLE IF EXISTS `deferred_bindings`; +CREATE TABLE `deferred_bindings` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `master_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `master_field` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `slave_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `slave_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `pivot_data` mediumtext COLLATE utf8mb4_unicode_ci, + `session_key` varchar(191) 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `failed_jobs`; +CREATE TABLE `failed_jobs` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, + `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, + `payload` text COLLATE utf8mb4_unicode_ci NOT NULL, + `exception` longtext COLLATE utf8mb4_unicode_ci, + `failed_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `janvince_smallcontactform_messages`; +CREATE TABLE `janvince_smallcontactform_messages` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` text COLLATE utf8mb4_unicode_ci, + `email` text COLLATE utf8mb4_unicode_ci, + `message` text COLLATE utf8mb4_unicode_ci, + `form_data` text 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `form_description` text COLLATE utf8mb4_unicode_ci, + `form_alias` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `form_notes` text 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; + +DROP TABLE IF EXISTS `jobs`; +CREATE TABLE `jobs` ( + `id` bigint unsigned NOT NULL AUTO_INCREMENT, + `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `payload` text 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; + +DROP TABLE IF EXISTS `martin_forms_records`; +CREATE TABLE `martin_forms_records` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `group` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '(Empty)', + `form_data` text COLLATE utf8mb4_unicode_ci, + `ip` varchar(191) 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; + +DROP TABLE IF EXISTS `migrations`; +CREATE TABLE `migrations` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `migration` varchar(191) 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; + +DROP TABLE IF EXISTS `offline_sitesearch_query_logs`; +CREATE TABLE `offline_sitesearch_query_logs` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `query` text COLLATE utf8mb4_unicode_ci NOT NULL, + `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `domain` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `useragent` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `session_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `rainlab_blog_categories`; +CREATE TABLE `rainlab_blog_categories` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text 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; + +DROP TABLE IF EXISTS `rainlab_blog_posts`; +CREATE TABLE `rainlab_blog_posts` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned DEFAULT NULL, + `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `excerpt` text COLLATE utf8mb4_unicode_ci, + `content` longtext COLLATE utf8mb4_unicode_ci, + `content_html` longtext 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 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; + +DROP TABLE IF EXISTS `rainlab_blog_posts_categories`; +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; + +DROP TABLE IF EXISTS `rainlab_location_countries`; +CREATE TABLE `rainlab_location_countries` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `is_enabled` tinyint(1) NOT NULL DEFAULT '0', + `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `is_pinned` tinyint(1) NOT NULL DEFAULT '0', + `calling_code` varchar(191) 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; + +DROP TABLE IF EXISTS `rainlab_location_states`; +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) COLLATE utf8mb4_unicode_ci NOT NULL, + `code` varchar(191) 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; + +DROP TABLE IF EXISTS `rainlab_notify_notification_rules`; +CREATE TABLE `rainlab_notify_notification_rules` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `class_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text COLLATE utf8mb4_unicode_ci, + `config_data` mediumtext COLLATE utf8mb4_unicode_ci, + `condition_data` mediumtext 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; + +DROP TABLE IF EXISTS `rainlab_notify_notifications`; +CREATE TABLE `rainlab_notify_notifications` ( + `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, + `event_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `notifiable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `notifiable_id` bigint unsigned NOT NULL, + `icon` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `body` text COLLATE utf8mb4_unicode_ci, + `data` mediumtext 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; + +DROP TABLE IF EXISTS `rainlab_notify_rule_actions`; +CREATE TABLE `rainlab_notify_rule_actions` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `class_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `config_data` mediumtext 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; + +DROP TABLE IF EXISTS `rainlab_notify_rule_conditions`; +CREATE TABLE `rainlab_notify_rule_conditions` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `class_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `config_data` mediumtext COLLATE utf8mb4_unicode_ci, + `condition_control_type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `rule_host_type` varchar(100) 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; + +DROP TABLE IF EXISTS `rainlab_translate_attributes`; +CREATE TABLE `rainlab_translate_attributes` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `model_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `model_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `attribute_data` mediumtext 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `rainlab_translate_indexes`; +CREATE TABLE `rainlab_translate_indexes` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `model_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `model_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `item` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `value` mediumtext 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; + +DROP TABLE IF EXISTS `rainlab_translate_locales`; +CREATE TABLE `rainlab_translate_locales` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `name` varchar(191) 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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `rainlab_translate_messages`; +CREATE TABLE `rainlab_translate_messages` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `message_data` mediumtext 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; + +DROP TABLE IF EXISTS `rainlab_user_mail_blockers`; +CREATE TABLE `rainlab_user_mail_blockers` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `template` varchar(191) 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; + +DROP TABLE IF EXISTS `sessions`; +CREATE TABLE `sessions` ( + `id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `payload` text COLLATE utf8mb4_unicode_ci, + `last_activity` int DEFAULT NULL, + `user_id` int unsigned DEFAULT NULL, + `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `user_agent` text COLLATE utf8mb4_unicode_ci, + UNIQUE KEY `sessions_id_unique` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `system_event_logs`; +CREATE TABLE `system_event_logs` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `level` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `message` text COLLATE utf8mb4_unicode_ci, + `details` mediumtext 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; + +DROP TABLE IF EXISTS `system_files`; +CREATE TABLE `system_files` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `disk_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `file_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `file_size` int NOT NULL, + `content_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text COLLATE utf8mb4_unicode_ci, + `field` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `attachment_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `attachment_type` varchar(191) 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `system_mail_layouts`; +CREATE TABLE `system_mail_layouts` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content_html` text COLLATE utf8mb4_unicode_ci, + `content_text` text COLLATE utf8mb4_unicode_ci, + `content_css` text COLLATE utf8mb4_unicode_ci, + `is_locked` tinyint(1) NOT NULL DEFAULT '0', + `options` text 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; + +DROP TABLE IF EXISTS `system_mail_partials`; +CREATE TABLE `system_mail_partials` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content_html` text COLLATE utf8mb4_unicode_ci, + `content_text` text 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; + +DROP TABLE IF EXISTS `system_mail_templates`; +CREATE TABLE `system_mail_templates` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `subject` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text COLLATE utf8mb4_unicode_ci, + `content_html` text COLLATE utf8mb4_unicode_ci, + `content_text` text 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; + +DROP TABLE IF EXISTS `system_parameters`; +CREATE TABLE `system_parameters` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `namespace` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `group` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `item` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, + `value` text 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; + +DROP TABLE IF EXISTS `system_plugin_history`; +CREATE TABLE `system_plugin_history` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `version` varchar(50) 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=1023 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `system_plugin_versions`; +CREATE TABLE `system_plugin_versions` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `version` varchar(50) 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=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `system_request_logs`; +CREATE TABLE `system_request_logs` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `status_code` int DEFAULT NULL, + `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `referer` text 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; + +DROP TABLE IF EXISTS `system_revisions`; +CREATE TABLE `system_revisions` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned DEFAULT NULL, + `field` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `cast` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `old_value` text COLLATE utf8mb4_unicode_ci, + `new_value` text COLLATE utf8mb4_unicode_ci, + `revisionable_type` varchar(191) 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; + +DROP TABLE IF EXISTS `system_settings`; +CREATE TABLE `system_settings` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `item` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `value` mediumtext COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`), + KEY `system_settings_item_index` (`item`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_categories`; +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) COLLATE utf8mb4_unicode_ci NOT NULL, + `meta_desc` text COLLATE utf8mb4_unicode_ci, + `icon` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `status` tinyint(1) NOT NULL DEFAULT '1', + `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `sort_order` int NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_chatrooms`; +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; + +DROP TABLE IF EXISTS `tps_birzha_chatrooms_users`; +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; + +DROP TABLE IF EXISTS `tps_birzha_contactform_messages`; +CREATE TABLE `tps_birzha_contactform_messages` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `surname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `mobile` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `content` text 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; + +DROP TABLE IF EXISTS `tps_birzha_countries`; +CREATE TABLE `tps_birzha_countries` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_currencies`; +CREATE TABLE `tps_birzha_currencies` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_docs_one`; +CREATE TABLE `tps_birzha_docs_one` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `section_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `section_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `section_docs` text COLLATE utf8mb4_unicode_ci NOT NULL, + `lang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_exchange_requests`; +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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text COLLATE utf8mb4_unicode_ci, + `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `currency` varchar(191) 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; + +DROP TABLE IF EXISTS `tps_birzha_measures`; +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) COLLATE utf8mb4_unicode_ci NOT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_payments`; +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) COLLATE utf8mb4_unicode_ci NOT NULL, + `note` text COLLATE utf8mb4_unicode_ci, + `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `bank_file` text COLLATE utf8mb4_unicode_ci, + `order_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `card_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_product_categories`; +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; + +DROP TABLE IF EXISTS `tps_birzha_products`; +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) COLLATE utf8mb4_unicode_ci NOT NULL, + `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `status_note` text COLLATE utf8mb4_unicode_ci, + `mark` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sort_roder` int NOT NULL DEFAULT '0', + `manufacturer` varchar(191) 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 COLLATE utf8mb4_unicode_ci, + `payment_term_id` int DEFAULT NULL, + `delivery_term_id` int DEFAULT NULL, + `place` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `packaging` varchar(191) 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `number_of_views` int NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_sliders`; +CREATE TABLE `tps_birzha_sliders` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `slide_items` text COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_terms`; +CREATE TABLE `tps_birzha_terms` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `deleted_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `tps_birzha_transactions`; +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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `user_id` int NOT NULL, + `description` text COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `user_groups`; +CREATE TABLE `user_groups` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text 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; + +DROP TABLE IF EXISTS `user_throttle`; +CREATE TABLE `user_throttle` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned DEFAULT NULL, + `ip_address` varchar(191) 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `users`; +CREATE TABLE `users` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `activation_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `persist_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `reset_password_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `permissions` text 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surname` varchar(191) 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `last_ip_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `phone` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `company` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `street_addr` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `city` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `state_id` int unsigned DEFAULT NULL, + `country_id` int unsigned DEFAULT NULL, + `mobile` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `dial_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, + `phone_verified` tinyint(1) NOT NULL DEFAULT '0', + `email_verified` tinyint(1) NOT NULL DEFAULT '0', + `email_activation_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `phone_activation_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + 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`), + KEY `users_state_id_index` (`state_id`), + KEY `users_country_id_index` (`country_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +DROP TABLE IF EXISTS `users_groups`; +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; + +INSERT INTO `backend_access_log` (`id`, `user_id`, `ip_address`, `created_at`, `updated_at`) VALUES +(1, 1, '127.0.0.1', '2023-06-09 18:27:22', '2023-06-09 18:27:22'), +(2, 1, '127.0.0.1', '2023-07-22 16:26:29', '2023-07-22 16:26:29'); + +INSERT INTO `backend_user_throttle` (`id`, `user_id`, `ip_address`, `attempts`, `last_attempt_at`, `is_suspended`, `suspended_at`, `is_banned`, `banned_at`) VALUES +(1, 1, '127.0.0.1', 0, NULL, 0, NULL, 0, NULL); + +INSERT INTO `backend_users` (`id`, `first_name`, `last_name`, `login`, `email`, `password`, `activation_code`, `persist_code`, `reset_password_code`, `permissions`, `is_activated`, `role_id`, `activated_at`, `last_login`, `created_at`, `updated_at`, `deleted_at`, `is_superuser`) VALUES +(1, 'Admin', 'Person', 'admin', 'admin@domain.tld', '$2y$10$fGfsIo38M1WniqiIBeWtIe5jRnbAlufPqvbHZcIo45PZmvu/FIagS', NULL, '$2y$10$t/gbpSsY2rQzFcXD.UygduuexyU5YXOuY3TDldEnZz6m3CU2THvXy', NULL, '', 1, 2, NULL, '2023-07-22 16:26:28', '2022-06-24 12:15:58', '2023-07-22 16:26:28', NULL, 1); + +INSERT INTO `migrations` (`id`, `migration`, `batch`) 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); + +INSERT INTO `rainlab_blog_categories` (`id`, `name`, `slug`, `code`, `description`, `parent_id`, `nest_left`, `nest_right`, `nest_depth`, `created_at`, `updated_at`) VALUES +(1, 'Uncategorized', 'uncategorized', NULL, NULL, NULL, 1, 2, 0, '2023-06-09 18:40:50', '2023-06-09 18:40:50'); + +INSERT INTO `rainlab_blog_posts` (`id`, `user_id`, `title`, `slug`, `excerpt`, `content`, `content_html`, `published_at`, `published`, `created_at`, `updated_at`, `metadata`) 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!*', '

This is your first ever blog post! It might be a good idea to update this post with some more relevant content.

\n

You can edit this content by selecting Blog from the administration back-end menu.

\n

Enjoy the good times!

', '2023-06-09 18:40:50', 1, '2023-06-09 18:40:50', '2023-06-09 18:40:50', NULL); + +INSERT INTO `rainlab_location_countries` (`id`, `is_enabled`, `name`, `code`, `is_pinned`, `calling_code`) 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'); + +INSERT INTO `rainlab_location_states` (`id`, `country_id`, `is_enabled`, `name`, `code`) 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, 'Centre–Val-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'); + +INSERT INTO `rainlab_location_states` (`id`, `country_id`, `is_enabled`, `name`, `code`) VALUES +(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'); + +INSERT INTO `rainlab_translate_locales` (`id`, `code`, `name`, `is_default`, `is_enabled`, `sort_order`) VALUES +(1, 'en', 'English', 1, 1, 1); + +INSERT INTO `rainlab_translate_messages` (`id`, `code`, `message_data`, `found`) VALUES +(1, 'site.main.page', '{\"x\":\"site.main_page\"}', 1); + +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) 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 18:21:51', '2023-06-09 18: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 23:22:11', '2023-06-09 23: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 18:22:51', '2023-06-09 18: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 23:23:11', '2023-06-09 23: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 18:23:51', '2023-06-09 18: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 23:24:11', '2023-06-09 23: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 18:24:51', '2023-06-09 18: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 23:25:11', '2023-06-09 23: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 18:25:51', '2023-06-09 18: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 23:26:11', '2023-06-09 23: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 18:26:51', '2023-06-09 18: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 23:27:11', '2023-06-09 23: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 18:27:51', '2023-06-09 18: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 23:28:11', '2023-06-09 23: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 18:28:51', '2023-06-09 18: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 23:29:11', '2023-06-09 23: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 18:29:51', '2023-06-09 18: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 23:30:11', '2023-06-09 23: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 18:30:51', '2023-06-09 18: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 23:31:11', '2023-06-09 23: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 18:31:51', '2023-06-09 18: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 23:32:11', '2023-06-09 23: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 18:32:51', '2023-06-09 18: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 23:33:11', '2023-06-09 23: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 18:33:52', '2023-06-09 18: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 23:34:11', '2023-06-09 23: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 18:34:51', '2023-06-09 18: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 23:35:11', '2023-06-09 23: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 18:35:51', '2023-06-09 18: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 23:36:11', '2023-06-09 23: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 18:36:52', '2023-06-09 18: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 18:36:54', '2023-06-09 18: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 23:37:11', '2023-06-09 23: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 18:37:52', '2023-06-09 18: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 23:38:11', '2023-06-09 23: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 18:38:51', '2023-06-09 18: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 23:39:11', '2023-06-09 23: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 18:39:51', '2023-06-09 18: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 23:40:11', '2023-06-09 23: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 18:40:52', '2023-06-09 18: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 18:40:59', '2023-06-09 18: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 23:41:11', '2023-06-09 23: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 18:41:46', '2023-06-09 18: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 18:41:51', '2023-06-09 18: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 23:42:11', '2023-06-09 23: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 18:42:23', '2023-06-09 18: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 18:42:52', '2023-06-09 18: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 23:43:11', '2023-06-09 23: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 18:43:52', '2023-06-09 18: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 23:44:11', '2023-06-09 23: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 18:44:52', '2023-06-09 18: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 23:45:11', '2023-06-09 23: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 18:45:52', '2023-06-09 18: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 23:46:11', '2023-06-09 23: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 18:46:15', '2023-06-09 18: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 18:46:40', '2023-06-09 18: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 18:46:51', '2023-06-09 18: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 23:47:11', '2023-06-09 23: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 18:47:52', '2023-06-09 18: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 23:48:11', '2023-06-09 23: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 18:48:22', '2023-06-09 18: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 18:48:52', '2023-06-09 18: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 23:49:11', '2023-06-09 23: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 18:49:51', '2023-06-09 18: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 23:50:11', '2023-06-09 23: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 18:50:34', '2023-06-09 18: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 18:50:52', '2023-06-09 18: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 23:51:11', '2023-06-09 23: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 18:51:21', '2023-06-09 18: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 18:51:52', '2023-06-09 18: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 23:52:11', '2023-06-09 23: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 18:52:52', '2023-06-09 18: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 23:53:11', '2023-06-09 23: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 18:53:52', '2023-06-09 18: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 23:54:11', '2023-06-09 23: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 18:54:52', '2023-06-09 18: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 23:55:11', '2023-06-09 23: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 18:55:52', '2023-06-09 18:55:52'); +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES +(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 23:56:11', '2023-06-09 23: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 18:56:52', '2023-06-09 18: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 23:57:11', '2023-06-09 23: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 18:57:52', '2023-06-09 18: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 23:58:11', '2023-06-09 23: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 18:58:52', '2023-06-09 18: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 23:59:11', '2023-06-09 23: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 18:59:52', '2023-06-09 18: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-10 00:00:11', '2023-06-10 00: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 19:00:52', '2023-06-09 19: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-10 00:01:12', '2023-06-10 00: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 19:01:52', '2023-06-09 19: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-10 00:02:11', '2023-06-10 00: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 19:02:52', '2023-06-09 19: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-10 00:03:11', '2023-06-10 00: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 19:03:52', '2023-06-09 19: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-10 00:04:11', '2023-06-10 00: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 19:04:52', '2023-06-09 19: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-10 00:05:11', '2023-06-10 00: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 19:05:53', '2023-06-09 19: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-10 00:06:11', '2023-06-10 00: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 19:06:52', '2023-06-09 19: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-10 00:07:11', '2023-06-10 00: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 19:07:52', '2023-06-09 19: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-10 00:08:11', '2023-06-10 00: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 19:08:52', '2023-06-09 19: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-10 00:09:11', '2023-06-10 00: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 19:09:52', '2023-06-09 19: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-10 00:10:11', '2023-06-10 00: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 19:10:52', '2023-06-09 19: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-10 00:11:12', '2023-06-10 00: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 19:11:52', '2023-06-09 19: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-10 00:12:11', '2023-06-10 00: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 19:12:52', '2023-06-09 19: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-10 00:13:11', '2023-06-10 00: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 19:13:52', '2023-06-09 19: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-10 00:14:11', '2023-06-10 00: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 19:14:52', '2023-06-09 19: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-10 00:15:11', '2023-06-10 00: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 19:15:52', '2023-06-09 19: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-10 00:16:11', '2023-06-10 00: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 19:16:52', '2023-06-09 19: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-10 00:17:11', '2023-06-10 00: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 19:17:52', '2023-06-09 19: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-10 00:18:11', '2023-06-10 00: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 19:18:52', '2023-06-09 19: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-10 00:19:11', '2023-06-10 00: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 19:19:52', '2023-06-09 19: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-10 00:20:11', '2023-06-10 00: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 19:20:52', '2023-06-09 19: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-10 00:21:11', '2023-06-10 00: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 19:21:52', '2023-06-09 19: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-10 00:22:11', '2023-06-10 00: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 19:22:52', '2023-06-09 19: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-10 00:23:12', '2023-06-10 00: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 19:23:52', '2023-06-09 19: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-10 00:24:11', '2023-06-10 00: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 19:24:52', '2023-06-09 19: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-10 00:25:11', '2023-06-10 00: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 19:25:52', '2023-06-09 19: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-10 00:26:11', '2023-06-10 00: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 19:26:52', '2023-06-09 19: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-10 00:27:11', '2023-06-10 00: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 19:27:52', '2023-06-09 19: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-10 00:28:11', '2023-06-10 00: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 19:28:52', '2023-06-09 19: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-10 00:29:11', '2023-06-10 00: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 19:29:52', '2023-06-09 19: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-10 00:30:11', '2023-06-10 00: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 19:30:52', '2023-06-09 19: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-10 00:31:11', '2023-06-10 00: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 19:31:52', '2023-06-09 19: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-10 00:32:11', '2023-06-10 00: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 19:32:52', '2023-06-09 19: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-10 00:33:12', '2023-06-10 00: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 19:33:52', '2023-06-09 19: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-10 00:34:11', '2023-06-10 00: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 19:34:52', '2023-06-09 19: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-10 00:35:11', '2023-06-10 00: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 19:35:52', '2023-06-09 19: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-10 00:36:11', '2023-06-10 00: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 19:36:52', '2023-06-09 19: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-10 00:37:11', '2023-06-10 00: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 19:37:52', '2023-06-09 19: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-10 00:38:11', '2023-06-10 00: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 19:38:52', '2023-06-09 19: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-10 00:39:11', '2023-06-10 00: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 19:39:52', '2023-06-09 19: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-10 00:40:11', '2023-06-10 00: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 19:40:52', '2023-06-09 19: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-10 00:41:11', '2023-06-10 00: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 19:41:52', '2023-06-09 19: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-10 00:42:11', '2023-06-10 00: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 19:42:52', '2023-06-09 19: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-10 00:43:11', '2023-06-10 00: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 19:43:52', '2023-06-09 19: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-10 00:44:11', '2023-06-10 00: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 19:44:52', '2023-06-09 19: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-10 00:45:12', '2023-06-10 00: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 19:45:52', '2023-06-09 19: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-10 00:46:11', '2023-06-10 00: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 19:46:52', '2023-06-09 19: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-10 00:47:12', '2023-06-10 00: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 19:47:52', '2023-06-09 19: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-10 00:48:11', '2023-06-10 00: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 19:48:52', '2023-06-09 19: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-10 00:49:11', '2023-06-10 00: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 19:49:52', '2023-06-09 19: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-10 00:50:11', '2023-06-10 00: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 19:50:52', '2023-06-09 19: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-10 00:51:12', '2023-06-10 00: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 19:51:52', '2023-06-09 19: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-10 00:52:11', '2023-06-10 00: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 19:52:52', '2023-06-09 19: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-10 00:53:12', '2023-06-10 00: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 19:53:52', '2023-06-09 19: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-10 00:54:11', '2023-06-10 00: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 19:54:52', '2023-06-09 19: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-10 00:55:11', '2023-06-10 00: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 19:55:52', '2023-06-09 19: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-10 00:56:11', '2023-06-10 00: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 19:56:52', '2023-06-09 19: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-10 00:57:11', '2023-06-10 00: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 19:57:52', '2023-06-09 19: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-10 00:58:11', '2023-06-10 00: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 19:58:52', '2023-06-09 19: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-10 00:59:11', '2023-06-10 00: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 19:59:52', '2023-06-09 19: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-10 01:00:11', '2023-06-10 01: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 20:00:52', '2023-06-09 20: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-10 01:01:11', '2023-06-10 01: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 20:01:52', '2023-06-09 20: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-10 01:02:11', '2023-06-10 01: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 20:02:52', '2023-06-09 20: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-10 01:03:11', '2023-06-10 01: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 20:03:52', '2023-06-09 20: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-10 01:04:11', '2023-06-10 01: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 20:04:52', '2023-06-09 20: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-10 01:05:11', '2023-06-10 01: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 20:05:52', '2023-06-09 20: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-10 01:06:11', '2023-06-10 01: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 20:06:52', '2023-06-09 20: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-10 01:07:12', '2023-06-10 01: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 20:07:52', '2023-06-09 20: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-10 01:08:11', '2023-06-10 01: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 20:08:52', '2023-06-09 20: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-10 01:09:11', '2023-06-10 01: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 20:09:52', '2023-06-09 20: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-10 01:10:11', '2023-06-10 01: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 20:10:52', '2023-06-09 20: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-10 01:11:11', '2023-06-10 01: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 20:11:52', '2023-06-09 20: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-10 01:12:11', '2023-06-10 01: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 20:12:52', '2023-06-09 20: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-10 01:13:11', '2023-06-10 01: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 20:13:52', '2023-06-09 20: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-10 01:14:11', '2023-06-10 01: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 20:14:52', '2023-06-09 20: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 20:15:07', '2023-06-09 20: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-10 01:15:11', '2023-06-10 01: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 20:15:52', '2023-06-09 20: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-10 01:16:11', '2023-06-10 01: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 20:16:23', '2023-06-09 20: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 20:16:52', '2023-06-09 20: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-10 01:17:11', '2023-06-10 01: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 20:17:52', '2023-06-09 20: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-10 01:18:11', '2023-06-10 01: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 20:18:52', '2023-06-09 20: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-10 01:19:11', '2023-06-10 01: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 20:19:44', '2023-06-09 20: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 20:19:52', '2023-06-09 20: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-10 01:20:11', '2023-06-10 01: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 20:20:52', '2023-06-09 20: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-10 01:21:11', '2023-06-10 01: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 20:21:52', '2023-06-09 20:21:52'); +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES +(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-10 01:22:11', '2023-06-10 01: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 20:22:52', '2023-06-09 20: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-10 01:23:11', '2023-06-10 01: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 20:23:52', '2023-06-09 20: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-10 01:24:11', '2023-06-10 01: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 20:24:52', '2023-06-09 20: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-10 01:25:11', '2023-06-10 01: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 20:25:52', '2023-06-09 20: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-10 01:26:11', '2023-06-10 01: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 20:26:52', '2023-06-09 20: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-10 01:27:11', '2023-06-10 01: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 20:27:52', '2023-06-09 20: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-10 01:28:11', '2023-06-10 01: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 20:28:52', '2023-06-09 20: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-10 01:29:11', '2023-06-10 01: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 20:29:52', '2023-06-09 20: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-10 01:30:11', '2023-06-10 01: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 20:30:52', '2023-06-09 20: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-10 01:31:12', '2023-06-10 01: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 20:31:52', '2023-06-09 20: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-10 01:32:11', '2023-06-10 01: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 20:32:52', '2023-06-09 20: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-10 01:33:11', '2023-06-10 01: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 20:33:52', '2023-06-09 20: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-10 01:34:11', '2023-06-10 01: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 20:34:52', '2023-06-09 20: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-10 01:35:12', '2023-06-10 01: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 20:35:52', '2023-06-09 20: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-10 01:36:11', '2023-06-10 01: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 20:36:52', '2023-06-09 20: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-10 01:37:11', '2023-06-10 01: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 20:37:52', '2023-06-09 20: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-10 01:38:12', '2023-06-10 01: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 20:38:52', '2023-06-09 20: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-10 01:39:11', '2023-06-10 01: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 20:39:52', '2023-06-09 20: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-10 01:40:12', '2023-06-10 01: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 20:40:52', '2023-06-09 20: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-10 01:41:11', '2023-06-10 01: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 20:41:52', '2023-06-09 20: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-10 01:42:11', '2023-06-10 01: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 20:42:52', '2023-06-09 20: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-10 01:43:11', '2023-06-10 01: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 20:43:52', '2023-06-09 20: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-10 01:44:11', '2023-06-10 01: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 20:44:52', '2023-06-09 20: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-10 01:45:11', '2023-06-10 01: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 20:45:52', '2023-06-09 20: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-10 01:46:11', '2023-06-10 01: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 20:46:52', '2023-06-09 20: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-10 01:47:12', '2023-06-10 01: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 20:47:52', '2023-06-09 20: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-10 01:48:11', '2023-06-10 01: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 20:48:52', '2023-06-09 20: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-10 01:49:11', '2023-06-10 01: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 20:49:52', '2023-06-09 20: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-10 01:50:11', '2023-06-10 01: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 20:50:52', '2023-06-09 20: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-10 01:51:11', '2023-06-10 01: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 20:51:52', '2023-06-09 20: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-10 01:52:12', '2023-06-10 01: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 20:52:52', '2023-06-09 20: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-10 01:53:11', '2023-06-10 01: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 20:53:52', '2023-06-09 20: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-10 01:54:12', '2023-06-10 01: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 20:54:52', '2023-06-09 20: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-10 01:55:11', '2023-06-10 01: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 20:55:52', '2023-06-09 20: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-10 01:56:11', '2023-06-10 01: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 20:56:52', '2023-06-09 20: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-10 01:57:12', '2023-06-10 01: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 20:57:52', '2023-06-09 20: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-10 01:58:11', '2023-06-10 01: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 20:58:52', '2023-06-09 20: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-10 01:59:11', '2023-06-10 01: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 20:59:52', '2023-06-09 20: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-10 02:00:11', '2023-06-10 02: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 21:00:52', '2023-06-09 21: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-10 02:01:11', '2023-06-10 02: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 21:01:52', '2023-06-09 21: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-10 02:02:12', '2023-06-10 02: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 21:02:52', '2023-06-09 21: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-10 02:03:11', '2023-06-10 02: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 21:03:52', '2023-06-09 21: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-10 02:04:12', '2023-06-10 02: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 21:04:52', '2023-06-09 21: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-10 02:05:11', '2023-06-10 02: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 21:05:52', '2023-06-09 21: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-10 02:06:11', '2023-06-10 02: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 21:06:52', '2023-06-09 21: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-10 02:07:12', '2023-06-10 02: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 21:07:52', '2023-06-09 21: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-10 02:08:11', '2023-06-10 02: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 21:08:52', '2023-06-09 21: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-10 02:09:11', '2023-06-10 02: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 21:09:52', '2023-06-09 21: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-10 02:10:12', '2023-06-10 02: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 21:10:52', '2023-06-09 21: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-10 02:11:12', '2023-06-10 02: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 21:11:52', '2023-06-09 21: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-10 02:12:12', '2023-06-10 02: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 21:12:52', '2023-06-09 21: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-10 02:13:11', '2023-06-10 02: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 21:13:52', '2023-06-09 21: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-10 02:14:12', '2023-06-10 02: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 21:14:52', '2023-06-09 21: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-10 02:15:12', '2023-06-10 02: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 21:15:52', '2023-06-09 21: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-10 02:16:11', '2023-06-10 02: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 21:16:52', '2023-06-09 21: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-10 02:17:12', '2023-06-10 02: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 21:17:52', '2023-06-09 21: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-10 02:18:12', '2023-06-10 02: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 21:18:52', '2023-06-09 21: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-10 02:19:12', '2023-06-10 02: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 21:19:52', '2023-06-09 21: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-10 02:20:12', '2023-06-10 02: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 21:20:52', '2023-06-09 21: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-10 02:21:12', '2023-06-10 02: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 21:21:52', '2023-06-09 21: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-10 02:22:12', '2023-06-10 02: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 21:22:52', '2023-06-09 21: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-10 02:23:12', '2023-06-10 02: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 21:23:52', '2023-06-09 21: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-10 02:24:12', '2023-06-10 02: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 21:24:52', '2023-06-09 21: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-10 02:25:11', '2023-06-10 02: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 21:25:52', '2023-06-09 21: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-10 02:26:11', '2023-06-10 02: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 21:26:52', '2023-06-09 21: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-10 02:27:11', '2023-06-10 02: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 21:27:52', '2023-06-09 21: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-10 02:28:11', '2023-06-10 02: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 21:28:52', '2023-06-09 21: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-10 02:29:11', '2023-06-10 02: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 21:29:52', '2023-06-09 21: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-10 02:30:11', '2023-06-10 02: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 21:30:52', '2023-06-09 21: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-10 02:31:11', '2023-06-10 02: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 21:31:52', '2023-06-09 21: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-10 02:32:11', '2023-06-10 02: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 21:32:52', '2023-06-09 21: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-10 02:33:11', '2023-06-10 02: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 21:33:52', '2023-06-09 21: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-10 02:34:11', '2023-06-10 02: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 21:34:52', '2023-06-09 21: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-10 02:35:11', '2023-06-10 02: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 21:35:52', '2023-06-09 21: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-10 02:36:11', '2023-06-10 02: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 21:36:52', '2023-06-09 21: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-10 02:37:11', '2023-06-10 02: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 21:37:52', '2023-06-09 21: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-10 02:38:11', '2023-06-10 02: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 21:38:52', '2023-06-09 21: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-10 02:39:11', '2023-06-10 02: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 21:39:52', '2023-06-09 21: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-10 02:40:11', '2023-06-10 02: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 21:40:52', '2023-06-09 21: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-10 02:41:11', '2023-06-10 02: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 21:41:52', '2023-06-09 21: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-10 02:42:11', '2023-06-10 02: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 21:42:52', '2023-06-09 21: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-10 02:43:11', '2023-06-10 02: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 21:43:52', '2023-06-09 21: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-10 02:44:11', '2023-06-10 02: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 21:44:52', '2023-06-09 21: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-10 02:45:11', '2023-06-10 02: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 21:45:52', '2023-06-09 21: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-10 02:46:11', '2023-06-10 02: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 21:46:52', '2023-06-09 21: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-10 02:47:11', '2023-06-10 02: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 21:47:52', '2023-06-09 21: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-10 02:48:11', '2023-06-10 02: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 21:48:52', '2023-06-09 21: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-10 02:49:11', '2023-06-10 02: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 21:49:52', '2023-06-09 21: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 17:47:19', '2023-06-10 17: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 17:47:53', '2023-06-10 17: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 17:48:07', '2023-06-10 17: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 17:49:07', '2023-06-10 17: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 17:50:07', '2023-06-10 17:50:07'); +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES +(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 17:51:06', '2023-06-10 17: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 17:52:07', '2023-06-10 17: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 17:53:06', '2023-06-10 17: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 17:54:06', '2023-06-10 17: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 17:55:06', '2023-06-10 17: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 17:56:06', '2023-06-10 17: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 17:57:06', '2023-06-10 17: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 17:58:06', '2023-06-10 17: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 17:59:06', '2023-06-10 17: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 18:00:06', '2023-06-10 18: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 18:01:07', '2023-06-10 18: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 18:02:06', '2023-06-10 18: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 18:03:06', '2023-06-10 18: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 18:04:06', '2023-06-10 18: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 18:05:06', '2023-06-10 18: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 18:06:06', '2023-06-10 18: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 18:07:06', '2023-06-10 18: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 18:08:06', '2023-06-10 18: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 18:09:06', '2023-06-10 18: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 18:10:06', '2023-06-10 18: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 18:11:06', '2023-06-10 18: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 18:12:06', '2023-06-10 18: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 18:13:06', '2023-06-10 18: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 18:14:06', '2023-06-10 18: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 18:15:06', '2023-06-10 18: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 18:16:07', '2023-06-10 18: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 18:17:07', '2023-06-10 18: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 18:18:07', '2023-06-10 18: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 18:19:06', '2023-06-10 18: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 18:20:06', '2023-06-10 18: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 18:21:06', '2023-06-10 18: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 18:22:07', '2023-06-10 18: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 18:23:06', '2023-06-10 18: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 18:24:06', '2023-06-10 18: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 18:25:06', '2023-06-10 18: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 18:26:06', '2023-06-10 18: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 18:27:06', '2023-06-10 18: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 18:28:06', '2023-06-10 18: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 18:29:06', '2023-06-10 18: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 18:30:06', '2023-06-10 18: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 18:31:06', '2023-06-10 18: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 18:32:07', '2023-06-10 18: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 18:33:07', '2023-06-10 18: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 18:34:06', '2023-06-10 18: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 18:35:06', '2023-06-10 18: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 18:36:07', '2023-06-10 18: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 18:37:06', '2023-06-10 18: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 18:38:07', '2023-06-10 18: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 18:39:06', '2023-06-10 18: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 18:40:06', '2023-06-10 18: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 18:41:07', '2023-06-10 18: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 18:42:06', '2023-06-10 18: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 18:43:06', '2023-06-10 18: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 18:44:06', '2023-06-10 18: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 18:45:06', '2023-06-10 18: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 18:46:07', '2023-06-10 18: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 18:47:06', '2023-06-10 18: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 18:48:06', '2023-06-10 18: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 18:49:07', '2023-06-10 18: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 18:50:07', '2023-06-10 18: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 18:51:06', '2023-06-10 18: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 18:52:07', '2023-06-10 18: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 18:53:06', '2023-06-10 18: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 18:54:06', '2023-06-10 18: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 18:55:06', '2023-06-10 18: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 18:56:07', '2023-06-10 18:56:07'); + +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES +(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 18:57:06', '2023-06-10 18: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 18:58:06', '2023-06-10 18: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 18:59:06', '2023-06-10 18: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 19:00:07', '2023-06-10 19: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 19:01:07', '2023-06-10 19: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 19:02:06', '2023-06-10 19: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 19:03:07', '2023-06-10 19: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 19:04:07', '2023-06-10 19: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 19:05:07', '2023-06-10 19: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 19:06:07', '2023-06-10 19: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 19:07:06', '2023-06-10 19: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 19:08:07', '2023-06-10 19: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 19:09:06', '2023-06-10 19: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 19:10:06', '2023-06-10 19: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 19:11:07', '2023-06-10 19: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 19:12:06', '2023-06-10 19: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 19:13:07', '2023-06-10 19: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 19:14:07', '2023-06-10 19: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 19:15:07', '2023-06-10 19: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 19:16:07', '2023-06-10 19: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 19:17:07', '2023-06-10 19: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 19:18:07', '2023-06-10 19: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 19:19:07', '2023-06-10 19: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 19:20:07', '2023-06-10 19: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 19:21:07', '2023-06-10 19: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 19:22:07', '2023-06-10 19: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 19:23:07', '2023-06-10 19: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 19:24:07', '2023-06-10 19: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 19:25:07', '2023-06-10 19: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 19:26:07', '2023-06-10 19: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 19:27:07', '2023-06-10 19: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 19:28:07', '2023-06-10 19: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 19:29:07', '2023-06-10 19: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 19:30:07', '2023-06-10 19: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 19:31:07', '2023-06-10 19: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 19:32:07', '2023-06-10 19: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 19:33:07', '2023-06-10 19: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 19:34:07', '2023-06-10 19: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 19:35:07', '2023-06-10 19: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 19:36:07', '2023-06-10 19: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 19:37:07', '2023-06-10 19: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 19:38:07', '2023-06-10 19: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 19:39:07', '2023-06-10 19: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 19:40:07', '2023-06-10 19: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 19:41:07', '2023-06-10 19: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 19:42:07', '2023-06-10 19: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 19:43:07', '2023-06-10 19: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 19:44:07', '2023-06-10 19: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 19:45:07', '2023-06-10 19: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 19:46:07', '2023-06-10 19: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 19:47:07', '2023-06-10 19: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 19:48:07', '2023-06-10 19: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 19:49:07', '2023-06-10 19: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 19:50:07', '2023-06-10 19: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 19:51:07', '2023-06-10 19: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 19:52:07', '2023-06-10 19: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 19:53:07', '2023-06-10 19: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 19:54:07', '2023-06-10 19: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 19:55:07', '2023-06-10 19: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 19:56:07', '2023-06-10 19: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 19:57:07', '2023-06-10 19: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 19:58:07', '2023-06-10 19: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 19:59:07', '2023-06-10 19: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 20:00:07', '2023-06-10 20: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 20:01:07', '2023-06-10 20: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 20:02:07', '2023-06-10 20: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 20:03:08', '2023-06-10 20: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 20:04:07', '2023-06-10 20: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 20:05:07', '2023-06-10 20: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 20:06:07', '2023-06-10 20: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 20:07:07', '2023-06-10 20: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 20:08:07', '2023-06-10 20: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 20:09:07', '2023-06-10 20: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 20:10:07', '2023-06-10 20: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 20:11:07', '2023-06-10 20: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 20:12:07', '2023-06-10 20: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 20:13:07', '2023-06-10 20: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 20:14:07', '2023-06-10 20: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 16:24:08', '2023-07-22 16: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 16:25:06', '2023-07-22 16: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 16:26:07', '2023-07-22 16: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 16:26:17', '2023-07-22 16: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 16:27:07', '2023-07-22 16: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 16:28:07', '2023-07-22 16: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 16:29:06', '2023-07-22 16: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 16:30:06', '2023-07-22 16: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 16:31:07', '2023-07-22 16: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 16:32:06', '2023-07-22 16: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 16:33:06', '2023-07-22 16: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 16:34:07', '2023-07-22 16: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 16:35:07', '2023-07-22 16: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 16:36:06', '2023-07-22 16: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 16:37:07', '2023-07-22 16: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 16:38:07', '2023-07-22 16: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 16:39:07', '2023-07-22 16: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 16:40:06', '2023-07-22 16: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 16:41:07', '2023-07-22 16: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 16:42:06', '2023-07-22 16: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 16:43:06', '2023-07-22 16: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 16:44:06', '2023-07-22 16: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 16:45:06', '2023-07-22 16: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 16:46:07', '2023-07-22 16: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 16:47:06', '2023-07-22 16: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 16:48:06', '2023-07-22 16: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 16:49:07', '2023-07-22 16: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 16:50:06', '2023-07-22 16: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 16:51:06', '2023-07-22 16: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 16:52:06', '2023-07-22 16: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 16:53:07', '2023-07-22 16: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 16:54:06', '2023-07-22 16: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 16:55:07', '2023-07-22 16: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 16:56:07', '2023-07-22 16: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 16:57:07', '2023-07-22 16: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 16:58:07', '2023-07-22 16: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 16:59:07', '2023-07-22 16: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 17:00:07', '2023-07-22 17: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 17:01:07', '2023-07-22 17: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 17:02:07', '2023-07-22 17: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 17:03:07', '2023-07-22 17: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 17:04:07', '2023-07-22 17: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 17:05:07', '2023-07-22 17: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 17:06:07', '2023-07-22 17: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 17:07:07', '2023-07-22 17: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 17:08:07', '2023-07-22 17: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 17:09:07', '2023-07-22 17: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 17:10:07', '2023-07-22 17: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 17:11:07', '2023-07-22 17: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 17:12:07', '2023-07-22 17: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 17:13:07', '2023-07-22 17: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 17:14:07', '2023-07-22 17: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 17:15:07', '2023-07-22 17: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 17:16:07', '2023-07-22 17: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 17:17:07', '2023-07-22 17: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 17:18:07', '2023-07-22 17: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 17:19:07', '2023-07-22 17:19:07'), +(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 17:20:07', '2023-07-22 17: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 17:21:07', '2023-07-22 17: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 17:22:07', '2023-07-22 17: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 17:23:07', '2023-07-22 17: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 17:24:07', '2023-07-22 17: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 17:25:07', '2023-07-22 17: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 17:26:07', '2023-07-22 17: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 17:27:07', '2023-07-22 17: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 17:28:07', '2023-07-22 17: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 17:29:07', '2023-07-22 17: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 17:30:07', '2023-07-22 17: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 17:31:07', '2023-07-22 17: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 17:32:07', '2023-07-22 17: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 17:33:07', '2023-07-22 17: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 17:34:07', '2023-07-22 17: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 17:35:07', '2023-07-22 17: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 17:36:07', '2023-07-22 17: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 17:37:07', '2023-07-22 17: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 17:38:07', '2023-07-22 17: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 17:39:07', '2023-07-22 17: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 17:40:07', '2023-07-22 17: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 17:41:07', '2023-07-22 17: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 17:42:07', '2023-07-22 17: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 17:43:07', '2023-07-22 17: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 17:44:07', '2023-07-22 17: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 17:45:07', '2023-07-22 17: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 17:46:07', '2023-07-22 17: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 17:47:07', '2023-07-22 17: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 17:48:07', '2023-07-22 17: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 17:49:07', '2023-07-22 17: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 17:50:07', '2023-07-22 17: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 17:51:07', '2023-07-22 17: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 17:52:07', '2023-07-22 17: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 17:53:07', '2023-07-22 17: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 17:54:07', '2023-07-22 17: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 17:55:07', '2023-07-22 17: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 17:56:07', '2023-07-22 17: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 17:57:07', '2023-07-22 17: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 17:58:07', '2023-07-22 17: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 17:59:07', '2023-07-22 17: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 18:00:07', '2023-07-22 18: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 18:01:07', '2023-07-22 18: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 18:02:07', '2023-07-22 18: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 18:03:07', '2023-07-22 18: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 18:04:07', '2023-07-22 18: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 18:05:07', '2023-07-22 18:05:07'); +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES +(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 18:06:07', '2023-07-22 18: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 18:07:07', '2023-07-22 18: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 18:08:07', '2023-07-22 18: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 18:09:07', '2023-07-22 18: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 18:10:07', '2023-07-22 18: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 18:11:07', '2023-07-22 18: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 18:12:07', '2023-07-22 18: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 18:13:07', '2023-07-22 18: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 18:14:07', '2023-07-22 18: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 18:15:07', '2023-07-22 18: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 18:16:07', '2023-07-22 18: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 18:17:07', '2023-07-22 18: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 18:18:07', '2023-07-22 18: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 18:19:07', '2023-07-22 18: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 18:20:07', '2023-07-22 18: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 18:21:07', '2023-07-22 18: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 18:22:07', '2023-07-22 18: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 18:23:07', '2023-07-22 18: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 18:24:07', '2023-07-22 18: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 18:25:07', '2023-07-22 18: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 18:26:07', '2023-07-22 18: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 18:27:07', '2023-07-22 18: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 18:28:07', '2023-07-22 18: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 18:29:07', '2023-07-22 18: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 18:30:07', '2023-07-22 18: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 18:31:07', '2023-07-22 18: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 18:32:07', '2023-07-22 18: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 18:33:07', '2023-07-22 18: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 18:34:07', '2023-07-22 18: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 18:35:07', '2023-07-22 18: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 18:36:07', '2023-07-22 18: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 18:37:07', '2023-07-22 18: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 18:38:07', '2023-07-22 18: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 18:39:07', '2023-07-22 18: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 18:40:07', '2023-07-22 18: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 18:41:07', '2023-07-22 18: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 18:42:07', '2023-07-22 18: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 18:43:07', '2023-07-22 18: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 18:44:07', '2023-07-22 18: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 18:45:07', '2023-07-22 18: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 18:46:07', '2023-07-22 18: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 18:47:07', '2023-07-22 18: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 18:48:07', '2023-07-22 18: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 18:49:07', '2023-07-22 18: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 18:50:07', '2023-07-22 18: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 18:51:07', '2023-07-22 18: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 18:52:07', '2023-07-22 18: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 18:53:07', '2023-07-22 18: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 18:54:07', '2023-07-22 18: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 18:55:07', '2023-07-22 18: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 18:56:07', '2023-07-22 18: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 18:57:07', '2023-07-22 18: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 18:58:07', '2023-07-22 18: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 18:59:07', '2023-07-22 18: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 19:00:07', '2023-07-22 19: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 19:01:07', '2023-07-22 19: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 19:02:07', '2023-07-22 19: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 19:03:07', '2023-07-22 19: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 19:04:07', '2023-07-22 19: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 19:05:07', '2023-07-22 19: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 19:06:07', '2023-07-22 19: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 19:07:07', '2023-07-22 19: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 19:08:07', '2023-07-22 19: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 19:09:07', '2023-07-22 19: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 19:10:07', '2023-07-22 19: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 19:11:07', '2023-07-22 19: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 19:12:07', '2023-07-22 19: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 19:13:07', '2023-07-22 19: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 19:14:07', '2023-07-22 19: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 19:15:07', '2023-07-22 19: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 19:16:07', '2023-07-22 19: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 19:17:07', '2023-07-22 19: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 19:18:07', '2023-07-22 19: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 19:19:07', '2023-07-22 19: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 19:20:07', '2023-07-22 19: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 19:21:07', '2023-07-22 19: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 19:22:07', '2023-07-22 19: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 19:23:07', '2023-07-22 19: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 19:24:07', '2023-07-22 19: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 19:25:07', '2023-07-22 19: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 19:26:07', '2023-07-22 19: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 19:27:07', '2023-07-22 19: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 19:28:07', '2023-07-22 19: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 19:29:07', '2023-07-22 19: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 19:30:07', '2023-07-22 19: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 19:31:07', '2023-07-22 19: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 19:32:07', '2023-07-22 19: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 19:33:08', '2023-07-22 19: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 19:34:07', '2023-07-22 19: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 19:35:07', '2023-07-22 19: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 19:36:07', '2023-07-22 19: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 19:37:07', '2023-07-22 19: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 19:38:07', '2023-07-22 19: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 19:39:07', '2023-07-22 19: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 19:40:07', '2023-07-22 19: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 19:41:07', '2023-07-22 19: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 19:42:07', '2023-07-22 19: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 19:43:07', '2023-07-22 19: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 19:44:07', '2023-07-22 19: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 19:45:07', '2023-07-22 19: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 19:46:07', '2023-07-22 19: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 19:47:07', '2023-07-22 19: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 19:48:07', '2023-07-22 19: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 19:49:07', '2023-07-22 19: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 19:50:07', '2023-07-22 19: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 19:51:07', '2023-07-22 19: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 19:52:07', '2023-07-22 19: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 19:53:07', '2023-07-22 19: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 19:54:07', '2023-07-22 19: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 19:55:07', '2023-07-22 19: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 19:56:07', '2023-07-22 19: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 19:57:07', '2023-07-22 19: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 19:58:07', '2023-07-22 19: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 19:59:07', '2023-07-22 19: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 20:00:07', '2023-07-22 20: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 20:01:07', '2023-07-22 20: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 20:02:07', '2023-07-22 20: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 20:03:07', '2023-07-22 20: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 20:04:07', '2023-07-22 20: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 20:05:07', '2023-07-22 20: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 20:06:07', '2023-07-22 20: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 20:07:07', '2023-07-22 20: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 20:08:07', '2023-07-22 20: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 20:09:07', '2023-07-22 20: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 20:10:07', '2023-07-22 20: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 20:11:07', '2023-07-22 20: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 20:12:07', '2023-07-22 20: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 20:13:07', '2023-07-22 20: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 20:14:07', '2023-07-22 20: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 20:15:07', '2023-07-22 20: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 20:16:07', '2023-07-22 20: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 20:17:07', '2023-07-22 20: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 20:18:08', '2023-07-22 20: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 20:19:08', '2023-07-22 20: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 20:20:07', '2023-07-22 20: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 20:21:07', '2023-07-22 20: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 20:22:07', '2023-07-22 20: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 20:23:07', '2023-07-22 20: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 20:24:07', '2023-07-22 20: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 20:25:07', '2023-07-22 20: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 20:26:07', '2023-07-22 20: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 20:27:07', '2023-07-22 20: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 20:28:07', '2023-07-22 20: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 20:29:07', '2023-07-22 20: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 20:30:07', '2023-07-22 20: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 20:31:07', '2023-07-22 20: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 20:32:07', '2023-07-22 20: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 20:33:07', '2023-07-22 20: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 20:34:07', '2023-07-22 20: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 20:35:07', '2023-07-22 20: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 20:36:07', '2023-07-22 20: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 20:37:07', '2023-07-22 20: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 20:38:07', '2023-07-22 20: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 20:39:07', '2023-07-22 20: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 20:40:07', '2023-07-22 20: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 20:41:07', '2023-07-22 20: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 20:42:07', '2023-07-22 20: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 20:43:07', '2023-07-22 20: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 20:44:07', '2023-07-22 20: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 20:45:07', '2023-07-22 20: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 20:46:07', '2023-07-22 20: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 20:47:07', '2023-07-22 20: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 20:48:07', '2023-07-22 20: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 20:49:08', '2023-07-22 20: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 20:50:07', '2023-07-22 20: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 20:51:07', '2023-07-22 20: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 20:52:07', '2023-07-22 20: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 20:53:07', '2023-07-22 20: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 20:54:08', '2023-07-22 20: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 20:55:08', '2023-07-22 20: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 20:56:07', '2023-07-22 20: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 20:57:07', '2023-07-22 20: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 20:58:07', '2023-07-22 20: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 20:59:07', '2023-07-22 20: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 21:00:07', '2023-07-22 21: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 21:01:07', '2023-07-22 21: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 21:02:07', '2023-07-22 21: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 21:03:07', '2023-07-22 21: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 21:04:07', '2023-07-22 21: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 21:05:07', '2023-07-22 21: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 21:06:07', '2023-07-22 21: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 21:07:07', '2023-07-22 21: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 21:08:07', '2023-07-22 21: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 21:09:07', '2023-07-22 21: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 21:10:07', '2023-07-22 21: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 21:11:07', '2023-07-22 21: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 21:12:07', '2023-07-22 21: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 21:13:07', '2023-07-22 21:13:07'); +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES +(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 21:14:07', '2023-07-22 21: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 21:15:07', '2023-07-22 21: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 21:16:08', '2023-07-22 21: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 21:17:07', '2023-07-22 21: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 21:18:07', '2023-07-22 21: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 21:19:07', '2023-07-22 21: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 21:20:08', '2023-07-22 21: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 21:21:08', '2023-07-22 21: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 21:22:08', '2023-07-22 21: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 21:23:08', '2023-07-22 21: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 21:24:08', '2023-07-22 21: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 21:25:08', '2023-07-22 21: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 21:26:08', '2023-07-22 21: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 21:27:08', '2023-07-22 21: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 21:28:08', '2023-07-22 21: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 21:29:08', '2023-07-22 21: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 21:30:08', '2023-07-22 21: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 21:31:08', '2023-07-22 21: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 21:32:08', '2023-07-22 21: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 21:33:08', '2023-07-22 21: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 21:34:08', '2023-07-22 21: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 21:35:08', '2023-07-22 21: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 21:36:08', '2023-07-22 21: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 21:37:08', '2023-07-22 21: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 21:38:08', '2023-07-22 21: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 21:39:08', '2023-07-22 21: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 21:40:08', '2023-07-22 21: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 21:41:08', '2023-07-22 21: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 21:42:08', '2023-07-22 21: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 21:43:08', '2023-07-22 21: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 21:44:08', '2023-07-22 21: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 21:45:08', '2023-07-22 21: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 21:46:08', '2023-07-22 21: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 21:47:08', '2023-07-22 21: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 21:48:08', '2023-07-22 21: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 21:49:08', '2023-07-22 21: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 21:50:08', '2023-07-22 21: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 21:51:08', '2023-07-22 21: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 21:52:08', '2023-07-22 21: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 21:53:08', '2023-07-22 21: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 21:54:08', '2023-07-22 21: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 21:55:08', '2023-07-22 21: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 21:56:08', '2023-07-22 21: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 21:57:08', '2023-07-22 21: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 21:58:08', '2023-07-22 21: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 21:59:08', '2023-07-22 21: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 22:00:08', '2023-07-22 22: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 22:01:08', '2023-07-22 22: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 22:02:08', '2023-07-22 22: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 22:03:08', '2023-07-22 22: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 22:04:08', '2023-07-22 22: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 22:05:08', '2023-07-22 22: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 22:06:08', '2023-07-22 22: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 22:07:08', '2023-07-22 22: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 22:08:08', '2023-07-22 22: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 22:09:08', '2023-07-22 22: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 22:10:08', '2023-07-22 22: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 22:11:08', '2023-07-22 22: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 22:12:08', '2023-07-22 22: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 22:13:08', '2023-07-22 22: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 22:14:08', '2023-07-22 22: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 22:15:08', '2023-07-22 22: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 22:16:08', '2023-07-22 22: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 22:17:08', '2023-07-22 22: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 22:18:08', '2023-07-22 22: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 22:19:08', '2023-07-22 22: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 22:20:08', '2023-07-22 22: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 22:21:08', '2023-07-22 22: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 22:22:08', '2023-07-22 22: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 22:23:08', '2023-07-22 22: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 22:24:08', '2023-07-22 22: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 22:25:08', '2023-07-22 22: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 22:26:08', '2023-07-22 22: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 22:27:08', '2023-07-22 22: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 22:28:08', '2023-07-22 22: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 22:29:08', '2023-07-22 22: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 22:30:08', '2023-07-22 22: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 22:31:08', '2023-07-22 22: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 22:32:08', '2023-07-22 22: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 22:33:08', '2023-07-22 22: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 22:34:08', '2023-07-22 22: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 22:35:08', '2023-07-22 22: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 22:36:08', '2023-07-22 22: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 22:37:08', '2023-07-22 22: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 22:38:08', '2023-07-22 22: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 22:39:08', '2023-07-22 22: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 22:40:08', '2023-07-22 22: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 22:41:08', '2023-07-22 22: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 22:42:08', '2023-07-22 22: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 22:43:08', '2023-07-22 22: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 22:44:08', '2023-07-22 22: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 22:45:08', '2023-07-22 22: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 22:46:08', '2023-07-22 22: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 22:47:08', '2023-07-22 22: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 22:48:09', '2023-07-22 22: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 22:49:08', '2023-07-22 22: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 22:50:08', '2023-07-22 22: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 22:51:08', '2023-07-22 22: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 22:52:08', '2023-07-22 22: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 22:53:08', '2023-07-22 22: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 22:54:08', '2023-07-22 22: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 22:55:08', '2023-07-22 22: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 22:56:08', '2023-07-22 22: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 22:57:08', '2023-07-22 22: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 22:58:08', '2023-07-22 22: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 22:59:08', '2023-07-22 22: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 23:00:08', '2023-07-22 23: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 23:01:08', '2023-07-22 23: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 23:02:08', '2023-07-22 23: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 23:03:08', '2023-07-22 23: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 23:04:08', '2023-07-22 23: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 23:05:08', '2023-07-22 23: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 23:06:08', '2023-07-22 23: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 23:07:08', '2023-07-22 23: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 23:08:08', '2023-07-22 23: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 23:09:08', '2023-07-22 23: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 23:10:08', '2023-07-22 23: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 23:11:08', '2023-07-22 23: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 23:12:08', '2023-07-22 23: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 23:13:08', '2023-07-22 23: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 23:14:08', '2023-07-22 23: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 23:15:08', '2023-07-22 23: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 23:16:08', '2023-07-22 23: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 23:17:08', '2023-07-22 23: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 23:18:09', '2023-07-22 23: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 23:19:08', '2023-07-22 23: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 23:20:08', '2023-07-22 23: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 23:21:08', '2023-07-22 23: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 23:22:08', '2023-07-22 23: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 23:23:08', '2023-07-22 23: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 23:24:08', '2023-07-22 23:24:08'); + +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES +(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 23:25:08', '2023-07-22 23: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 23:26:08', '2023-07-22 23: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 23:27:08', '2023-07-22 23: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 23:28:08', '2023-07-22 23: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 23:29:08', '2023-07-22 23: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 23:30:08', '2023-07-22 23: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 23:31:08', '2023-07-22 23: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 23:32:08', '2023-07-22 23: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 23:33:08', '2023-07-22 23: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 23:34:08', '2023-07-22 23: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 23:35:08', '2023-07-22 23: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 23:36:08', '2023-07-22 23: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 23:37:08', '2023-07-22 23: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 23:38:08', '2023-07-22 23: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 23:39:08', '2023-07-22 23: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 23:40:08', '2023-07-22 23: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 23:41:08', '2023-07-22 23: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 23:42:08', '2023-07-22 23: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 23:43:09', '2023-07-22 23: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 23:44:08', '2023-07-22 23: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 23:45:08', '2023-07-22 23: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 23:46:09', '2023-07-22 23: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 23:47:08', '2023-07-22 23: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 23:48:08', '2023-07-22 23: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 23:49:08', '2023-07-22 23: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 23:50:08', '2023-07-22 23: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 23:51:08', '2023-07-22 23: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 23:52:08', '2023-07-22 23: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 23:53:08', '2023-07-22 23: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 23:54:08', '2023-07-22 23: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 23:55:08', '2023-07-22 23: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 23:56:08', '2023-07-22 23: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 23:57:09', '2023-07-22 23: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 23:58:08', '2023-07-22 23: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 23:59:08', '2023-07-22 23: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-23 00:00:08', '2023-07-23 00: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-23 00:01:08', '2023-07-23 00: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-23 00:02:08', '2023-07-23 00: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-23 00:03:09', '2023-07-23 00: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-23 00:04:08', '2023-07-23 00: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-23 00:05:08', '2023-07-23 00: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-23 00:06:09', '2023-07-23 00: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-23 00:07:08', '2023-07-23 00: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-23 00:08:08', '2023-07-23 00: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-23 00:09:08', '2023-07-23 00: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-23 00:10:08', '2023-07-23 00: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-23 00:11:08', '2023-07-23 00: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-23 00:12:08', '2023-07-23 00: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-23 00:13:09', '2023-07-23 00: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-23 00:14:08', '2023-07-23 00: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-23 00:15:08', '2023-07-23 00: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-23 00:16:08', '2023-07-23 00: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-23 00:17:08', '2023-07-23 00: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-23 00:18:08', '2023-07-23 00: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-23 00:19:08', '2023-07-23 00: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-23 00:20:08', '2023-07-23 00: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-23 00:21:08', '2023-07-23 00: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-23 00:22:08', '2023-07-23 00: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-23 00:23:08', '2023-07-23 00: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-23 00:24:08', '2023-07-23 00: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-23 00:25:08', '2023-07-23 00: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-23 00:26:08', '2023-07-23 00: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-23 00:27:08', '2023-07-23 00: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-23 00:28:08', '2023-07-23 00: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-23 00:29:08', '2023-07-23 00: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-23 00:30:08', '2023-07-23 00: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-23 00:31:08', '2023-07-23 00: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-23 00:32:08', '2023-07-23 00: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-23 00:33:08', '2023-07-23 00: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-23 00:34:08', '2023-07-23 00: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-23 00:35:08', '2023-07-23 00: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-23 00:36:08', '2023-07-23 00: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-23 00:37:08', '2023-07-23 00: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-23 00:38:08', '2023-07-23 00: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-23 00:39:08', '2023-07-23 00: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-23 00:40:08', '2023-07-23 00: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-23 00:41:08', '2023-07-23 00: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-23 00:42:08', '2023-07-23 00: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-23 00:43:08', '2023-07-23 00: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-23 00:44:08', '2023-07-23 00: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-23 00:45:08', '2023-07-23 00: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-23 00:46:08', '2023-07-23 00: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-23 00:47:08', '2023-07-23 00: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-23 00:48:08', '2023-07-23 00: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-23 00:49:08', '2023-07-23 00: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-23 00:50:08', '2023-07-23 00: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-23 00:51:08', '2023-07-23 00: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-23 00:52:08', '2023-07-23 00: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-23 00:53:09', '2023-07-23 00: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-23 00:54:08', '2023-07-23 00: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-23 00:55:08', '2023-07-23 00: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-23 00:56:09', '2023-07-23 00: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-23 00:57:09', '2023-07-23 00: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-23 00:58:09', '2023-07-23 00: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-23 00:59:09', '2023-07-23 00: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-23 01:00:09', '2023-07-23 01: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-23 01:01:09', '2023-07-23 01: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-23 01:02:09', '2023-07-23 01: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-23 01:03:09', '2023-07-23 01: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-23 01:04:09', '2023-07-23 01: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-23 01:05:09', '2023-07-23 01: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-23 01:06:09', '2023-07-23 01: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-23 01:07:09', '2023-07-23 01: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-23 01:08:09', '2023-07-23 01: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-23 01:09:09', '2023-07-23 01: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-23 01:10:09', '2023-07-23 01: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-23 01:11:09', '2023-07-23 01: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-23 01:12:09', '2023-07-23 01: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-23 01:13:09', '2023-07-23 01: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-23 01:14:09', '2023-07-23 01: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-23 01:15:09', '2023-07-23 01: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-23 01:16:09', '2023-07-23 01: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-23 01:17:09', '2023-07-23 01: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-23 01:18:09', '2023-07-23 01: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-23 01:19:09', '2023-07-23 01: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-23 01:20:09', '2023-07-23 01: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-23 01:21:09', '2023-07-23 01: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-23 01:22:09', '2023-07-23 01: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-23 01:23:09', '2023-07-23 01: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-23 01:24:09', '2023-07-23 01: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-23 01:25:09', '2023-07-23 01: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-23 01:26:09', '2023-07-23 01: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-23 01:27:09', '2023-07-23 01: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-23 01:28:09', '2023-07-23 01: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-23 01:29:09', '2023-07-23 01: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-23 01:30:09', '2023-07-23 01: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-23 01:31:09', '2023-07-23 01: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-23 01:32:09', '2023-07-23 01: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-23 01:33:09', '2023-07-23 01: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-23 01:34:09', '2023-07-23 01: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-23 01:35:09', '2023-07-23 01: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-23 01:36:09', '2023-07-23 01: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-23 01:37:09', '2023-07-23 01: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-23 01:38:09', '2023-07-23 01: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-23 01:39:09', '2023-07-23 01: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-23 01:40:09', '2023-07-23 01: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-23 01:41:09', '2023-07-23 01: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-23 01:42:09', '2023-07-23 01: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-23 01:43:09', '2023-07-23 01: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-23 01:44:09', '2023-07-23 01: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-23 01:45:09', '2023-07-23 01: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-23 01:46:09', '2023-07-23 01: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-23 01:47:09', '2023-07-23 01: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-23 01:48:09', '2023-07-23 01: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-23 01:49:09', '2023-07-23 01: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-23 01:50:09', '2023-07-23 01: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-23 01:51:09', '2023-07-23 01: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-23 01:52:09', '2023-07-23 01: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-23 01:53:09', '2023-07-23 01: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-23 01:54:09', '2023-07-23 01: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-23 01:55:09', '2023-07-23 01: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-23 01:56:09', '2023-07-23 01: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-23 01:57:09', '2023-07-23 01: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-23 01:58:09', '2023-07-23 01: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-23 01:59:09', '2023-07-23 01: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-23 02:00:09', '2023-07-23 02: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-23 02:01:09', '2023-07-23 02: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-23 02:02:09', '2023-07-23 02: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-23 02:03:09', '2023-07-23 02: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-23 02:04:09', '2023-07-23 02: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-23 02:05:09', '2023-07-23 02: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-23 02:06:09', '2023-07-23 02: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-23 02:07:09', '2023-07-23 02: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-23 02:08:09', '2023-07-23 02: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-23 02:09:09', '2023-07-23 02: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-23 02:10:09', '2023-07-23 02: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-23 02:11:09', '2023-07-23 02: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-23 02:12:09', '2023-07-23 02: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-23 02:13:09', '2023-07-23 02: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-23 02:14:09', '2023-07-23 02: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-23 02:15:09', '2023-07-23 02: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-23 02:16:09', '2023-07-23 02: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-23 02:17:09', '2023-07-23 02: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-23 02:18:09', '2023-07-23 02: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-23 02:19:09', '2023-07-23 02: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-23 02:20:09', '2023-07-23 02: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-23 02:21:09', '2023-07-23 02: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-23 02:22:09', '2023-07-23 02: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-23 02:23:09', '2023-07-23 02: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-23 02:24:09', '2023-07-23 02: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-23 02:25:09', '2023-07-23 02: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-23 02:26:09', '2023-07-23 02: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-23 02:27:09', '2023-07-23 02: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-23 02:28:09', '2023-07-23 02: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-23 02:29:09', '2023-07-23 02: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-23 02:30:09', '2023-07-23 02: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-23 02:31:09', '2023-07-23 02:31:09'); +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES +(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-23 02:32:09', '2023-07-23 02: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-23 02:33:09', '2023-07-23 02: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-23 02:34:09', '2023-07-23 02: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-23 02:35:09', '2023-07-23 02: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-23 02:36:09', '2023-07-23 02: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-23 02:37:09', '2023-07-23 02: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-23 02:38:09', '2023-07-23 02: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-23 02:39:09', '2023-07-23 02: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-23 02:40:09', '2023-07-23 02: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-23 02:41:09', '2023-07-23 02: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-23 02:42:09', '2023-07-23 02: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-23 02:43:09', '2023-07-23 02: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-23 02:44:09', '2023-07-23 02: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-23 02:45:09', '2023-07-23 02: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-23 02:46:09', '2023-07-23 02: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-23 02:47:09', '2023-07-23 02: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-23 02:48:09', '2023-07-23 02: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-23 02:49:09', '2023-07-23 02: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-23 02:50:09', '2023-07-23 02: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-23 02:51:09', '2023-07-23 02: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-23 02:52:09', '2023-07-23 02: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-23 02:53:09', '2023-07-23 02: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-23 02:54:09', '2023-07-23 02: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-23 02:55:09', '2023-07-23 02: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-23 02:56:09', '2023-07-23 02: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-23 02:57:09', '2023-07-23 02: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-23 02:58:09', '2023-07-23 02: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-23 02:59:09', '2023-07-23 02: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-23 03:00:09', '2023-07-23 03: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-23 03:01:09', '2023-07-23 03: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-23 03:02:09', '2023-07-23 03: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-23 03:03:09', '2023-07-23 03: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-23 03:04:09', '2023-07-23 03: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-23 03:05:09', '2023-07-23 03: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-23 03:06:09', '2023-07-23 03: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-23 03:07:09', '2023-07-23 03: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-23 03:08:09', '2023-07-23 03: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-23 03:09:09', '2023-07-23 03: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-23 03:10:09', '2023-07-23 03: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-23 03:11:09', '2023-07-23 03: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-23 03:12:09', '2023-07-23 03: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-23 03:13:09', '2023-07-23 03: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-23 03:14:09', '2023-07-23 03: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-23 03:15:09', '2023-07-23 03: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-23 03:16:09', '2023-07-23 03: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-23 03:17:09', '2023-07-23 03: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-23 03:18:09', '2023-07-23 03: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-23 03:19:09', '2023-07-23 03: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-23 03:20:09', '2023-07-23 03: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-23 03:21:09', '2023-07-23 03: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-23 03:22:09', '2023-07-23 03: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-23 03:23:09', '2023-07-23 03: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-23 03:24:09', '2023-07-23 03: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-23 03:25:09', '2023-07-23 03: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-23 03:26:09', '2023-07-23 03: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-23 03:27:09', '2023-07-23 03: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-23 03:28:09', '2023-07-23 03: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-23 03:29:09', '2023-07-23 03: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-23 03:30:09', '2023-07-23 03: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-23 03:31:09', '2023-07-23 03: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-23 03:32:09', '2023-07-23 03: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-23 03:33:09', '2023-07-23 03: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-23 03:34:09', '2023-07-23 03: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-23 03:35:09', '2023-07-23 03: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-23 03:36:09', '2023-07-23 03: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-23 03:37:09', '2023-07-23 03: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-23 03:38:09', '2023-07-23 03: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-23 03:39:09', '2023-07-23 03: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-23 03:40:09', '2023-07-23 03: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-23 03:41:09', '2023-07-23 03: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-23 03:42:09', '2023-07-23 03: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-23 03:43:09', '2023-07-23 03: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-23 03:44:09', '2023-07-23 03: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-23 03:45:09', '2023-07-23 03: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-23 03:46:09', '2023-07-23 03: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-23 03:47:09', '2023-07-23 03: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-23 03:48:09', '2023-07-23 03: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-23 03:49:09', '2023-07-23 03: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-23 03:50:09', '2023-07-23 03: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-23 03:51:09', '2023-07-23 03: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-23 03:52:09', '2023-07-23 03: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-23 03:53:09', '2023-07-23 03: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-23 03:54:10', '2023-07-23 03: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-23 03:55:09', '2023-07-23 03: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-23 03:56:09', '2023-07-23 03: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-23 03:57:10', '2023-07-23 03: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-23 03:58:09', '2023-07-23 03: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-23 03:59:10', '2023-07-23 03: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-23 04:00:09', '2023-07-23 04: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-23 04:01:09', '2023-07-23 04: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-23 04:02:09', '2023-07-23 04: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-23 04:03:09', '2023-07-23 04: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-23 04:04:09', '2023-07-23 04: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-23 04:05:09', '2023-07-23 04: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-23 04:06:09', '2023-07-23 04: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-23 04:07:09', '2023-07-23 04: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-23 04:08:09', '2023-07-23 04: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-23 04:09:09', '2023-07-23 04: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-23 04:10:09', '2023-07-23 04: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-23 04:11:09', '2023-07-23 04: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-23 04:12:09', '2023-07-23 04: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-23 04:13:09', '2023-07-23 04: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-23 04:14:09', '2023-07-23 04: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-23 04:15:09', '2023-07-23 04: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-23 04:16:10', '2023-07-23 04: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-23 04:17:09', '2023-07-23 04: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-23 04:18:10', '2023-07-23 04: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-23 04:19:10', '2023-07-23 04: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-23 04:20:09', '2023-07-23 04: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-23 04:21:09', '2023-07-23 04: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-23 04:22:09', '2023-07-23 04: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-23 04:23:09', '2023-07-23 04: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-23 04:24:09', '2023-07-23 04: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-23 04:25:09', '2023-07-23 04: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-23 04:26:09', '2023-07-23 04: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-23 04:27:09', '2023-07-23 04: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-23 04:28:09', '2023-07-23 04: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-23 04:29:09', '2023-07-23 04: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-23 04:30:09', '2023-07-23 04: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-23 04:31:09', '2023-07-23 04: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-23 04:32:09', '2023-07-23 04: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-23 04:33:09', '2023-07-23 04: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-23 04:34:09', '2023-07-23 04: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-23 04:35:09', '2023-07-23 04: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-23 04:36:09', '2023-07-23 04: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-23 04:37:09', '2023-07-23 04: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-23 04:38:09', '2023-07-23 04: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-23 04:39:09', '2023-07-23 04: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-23 04:40:09', '2023-07-23 04: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-23 04:41:09', '2023-07-23 04: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-23 04:42:09', '2023-07-23 04: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-23 04:43:09', '2023-07-23 04: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-23 04:44:10', '2023-07-23 04: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-23 04:45:09', '2023-07-23 04: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-23 04:46:09', '2023-07-23 04: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-23 04:47:10', '2023-07-23 04: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-23 04:48:10', '2023-07-23 04: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-23 04:49:09', '2023-07-23 04: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-23 04:50:09', '2023-07-23 04: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-23 04:51:09', '2023-07-23 04: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-23 04:52:09', '2023-07-23 04: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-23 04:53:09', '2023-07-23 04: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-23 04:54:09', '2023-07-23 04: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-23 04:55:09', '2023-07-23 04: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-23 04:56:10', '2023-07-23 04: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-23 04:57:10', '2023-07-23 04: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-23 04:58:09', '2023-07-23 04: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-23 04:59:09', '2023-07-23 04: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 05:00:09', '2023-07-23 05: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 05:01:09', '2023-07-23 05: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 05:02:09', '2023-07-23 05: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 05:03:09', '2023-07-23 05: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 05:04:09', '2023-07-23 05: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 05:05:09', '2023-07-23 05: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 05:06:09', '2023-07-23 05: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 05:07:09', '2023-07-23 05: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 05:08:09', '2023-07-23 05: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 05:09:09', '2023-07-23 05: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 05:10:09', '2023-07-23 05: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 05:11:09', '2023-07-23 05: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 05:12:09', '2023-07-23 05: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 05:13:09', '2023-07-23 05: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 05:14:09', '2023-07-23 05: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 05:15:09', '2023-07-23 05: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 05:16:09', '2023-07-23 05: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 05:17:10', '2023-07-23 05: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 05:18:10', '2023-07-23 05: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 05:19:10', '2023-07-23 05: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 05:20:09', '2023-07-23 05: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 05:21:09', '2023-07-23 05: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 05:22:09', '2023-07-23 05: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 05:23:09', '2023-07-23 05: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 05:24:09', '2023-07-23 05: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 05:25:09', '2023-07-23 05: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 05:26:09', '2023-07-23 05: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 05:27:10', '2023-07-23 05: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 05:28:10', '2023-07-23 05: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 05:29:10', '2023-07-23 05: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 05:30:10', '2023-07-23 05: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 05:31:10', '2023-07-23 05: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 05:32:10', '2023-07-23 05: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 05:33:10', '2023-07-23 05: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 05:34:10', '2023-07-23 05: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 05:35:10', '2023-07-23 05: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 05:36:10', '2023-07-23 05: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 05:37:10', '2023-07-23 05: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 05:38:10', '2023-07-23 05:38:10'); +INSERT INTO `system_event_logs` (`id`, `level`, `message`, `details`, `created_at`, `updated_at`) VALUES +(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 05:39:10', '2023-07-23 05: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 05:40:10', '2023-07-23 05: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 05:41:10', '2023-07-23 05: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 05:42:09', '2023-07-23 05: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 05:43:10', '2023-07-23 05: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 05:44:10', '2023-07-23 05: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 05:45:09', '2023-07-23 05: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 05:46:10', '2023-07-23 05: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 05:47:10', '2023-07-23 05: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 05:48:09', '2023-07-23 05: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 05:49:10', '2023-07-23 05: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 05:50:09', '2023-07-23 05: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 05:51:09', '2023-07-23 05: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 05:52:10', '2023-07-23 05: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 05:53:09', '2023-07-23 05: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 05:54:09', '2023-07-23 05: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 05:55:09', '2023-07-23 05: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 05:56:10', '2023-07-23 05: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 05:57:10', '2023-07-23 05: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 05:58:10', '2023-07-23 05: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 05:59:10', '2023-07-23 05: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 06:00:10', '2023-07-23 06: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 06:01:10', '2023-07-23 06: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 06:02:10', '2023-07-23 06: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 06:03:10', '2023-07-23 06: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 06:04:10', '2023-07-23 06: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 06:05:10', '2023-07-23 06: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 06:06:10', '2023-07-23 06: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 06:07:10', '2023-07-23 06: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 06:08:10', '2023-07-23 06: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 06:09:10', '2023-07-23 06:09:10'), +(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 06:10:10', '2023-07-23 06: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 06:11:10', '2023-07-23 06: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 06:12:10', '2023-07-23 06: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 06:13:10', '2023-07-23 06: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 06:14:10', '2023-07-23 06: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 06:15:10', '2023-07-23 06: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 06:16:10', '2023-07-23 06: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 06:17:10', '2023-07-23 06:17:10'); + +INSERT INTO `system_parameters` (`id`, `namespace`, `group`, `item`, `value`) VALUES +(1, 'system', 'update', 'count', '10'), +(2, 'cms', 'theme', 'active', '\"gurlushyk\"'), +(3, 'system', 'update', 'retry', '1690129593'); + +INSERT INTO `system_plugin_history` (`id`, `code`, `type`, `version`, `detail`, `created_at`) VALUES +(1, 'Indikator.DevTools', 'comment', '1.0.0', 'First version of Developer Tools.', '2023-06-09 18:21:42'), +(2, 'Indikator.DevTools', 'comment', '1.1.0', 'Edit plugins with the code editor.', '2023-06-09 18:21:42'), +(3, 'Indikator.DevTools', 'comment', '1.1.1', 'Translate some English texts.', '2023-06-09 18:21:42'), +(4, 'Indikator.DevTools', 'comment', '1.1.2', 'Fixed the Create file issue.', '2023-06-09 18:21:42'), +(5, 'Indikator.DevTools', 'comment', '1.1.3', 'Added new icon for main navigation.', '2023-06-09 18:21:42'), +(6, 'Indikator.DevTools', 'comment', '1.1.4', 'Show the PHP\'s configuration.', '2023-06-09 18:21:42'), +(7, 'Indikator.DevTools', 'comment', '1.1.5', 'Minor code improvements and bugfix.', '2023-06-09 18:21:42'), +(8, 'Indikator.DevTools', 'comment', '1.1.6', 'The top menu icon shows again.', '2023-06-09 18:21:42'), +(9, 'Indikator.DevTools', 'comment', '1.1.7', 'Fixed the Create folder issue.', '2023-06-09 18:21:42'), +(10, 'Indikator.DevTools', 'comment', '1.1.8', '!!! Updated for October 420+.', '2023-06-09 18:21:42'), +(11, 'Indikator.DevTools', 'comment', '1.1.9', 'Updated the main navigation icon.', '2023-06-09 18:21:42'), +(12, 'Indikator.DevTools', 'comment', '1.1.9', 'Added last modified date.', '2023-06-09 18:21:42'), +(13, 'Indikator.DevTools', 'comment', '1.2.0', 'The syntax highlighting works again!', '2023-06-09 18:21:42'), +(14, 'Indikator.DevTools', 'comment', '1.2.1', 'Help links open in a new window.', '2023-06-09 18:21:42'), +(15, 'Indikator.DevTools', 'comment', '1.2.2', 'Fixed the dependency bug in asset list.', '2023-06-09 18:21:42'), +(16, 'Indikator.DevTools', 'comment', '1.2.3', 'The file delete operation works again.', '2023-06-09 18:21:42'), +(17, 'JanVince.SmallContactForm', 'script', '1.0.0', 'scf_tables.php', '2023-06-09 18:21:42'), +(18, 'JanVince.SmallContactForm', 'comment', '1.0.0', 'First version of Small Contact Form plugin', '2023-06-09 18:21:42'), +(19, 'JanVince.SmallContactForm', 'comment', '1.0.1', 'Fix form hiding after successful send', '2023-06-09 18:21:42'), +(20, 'JanVince.SmallContactForm', 'comment', '1.0.1', 'Fix in README.md', '2023-06-09 18:21:42'), +(21, 'JanVince.SmallContactForm', 'comment', '1.0.2', 'Fix some typos and add LICENCE file (thanks Szabó Gergő)', '2023-06-09 18:21:42'), +(22, 'JanVince.SmallContactForm', 'comment', '1.1.0', 'Added function to delete records in Messages list', '2023-06-09 18:21:42'), +(23, 'JanVince.SmallContactForm', 'comment', '1.1.0', 'Added permission to delete records', '2023-06-09 18:21:42'), +(24, 'JanVince.SmallContactForm', 'comment', '1.2.0', 'Added dashboard report widgets (Stats and New messages)', '2023-06-09 18:21:42'), +(25, 'JanVince.SmallContactForm', 'comment', '1.2.1', 'Mail templates now render values with {{ values|raw }}', '2023-06-09 18:21:42'), +(26, 'JanVince.SmallContactForm', 'comment', '1.2.2', 'Mail templates convert new lines to
with {{ values|raw|nl2br }}', '2023-06-09 18:21:42'), +(27, 'JanVince.SmallContactForm', 'comment', '1.2.3', 'Fields mapping moved to separate tab *Columns mapping*', '2023-06-09 18:21:42'), +(28, 'JanVince.SmallContactForm', 'comment', '1.2.4', 'Updated README.md with assets usage example', '2023-06-09 18:21:42'), +(29, 'JanVince.SmallContactForm', 'script', '1.2.5', 'scf_tables_02.php', '2023-06-09 18:21:42'), +(30, 'JanVince.SmallContactForm', 'comment', '1.2.5', 'Added IP protection function (limit too many submits from one IP address)', '2023-06-09 18:21:42'), +(31, 'JanVince.SmallContactForm', 'comment', '1.2.5', 'And Messages list column to show senders IP address (invisible by default)', '2023-06-09 18:21:42'), +(32, 'JanVince.SmallContactForm', 'comment', '1.2.6', 'Fixed IP protection error message', '2023-06-09 18:21:42'), +(33, 'JanVince.SmallContactForm', 'comment', '1.2.7', 'Changed remote_ip column type to string', '2023-06-09 18:21:42'), +(34, 'JanVince.SmallContactForm', 'comment', '1.2.8', 'Added option to use placeholders instead of labels', '2023-06-09 18:21:42'), +(35, 'JanVince.SmallContactForm', 'comment', '1.3.0', 'Added translation support for Rainlab Translate plugin', '2023-06-09 18:21:42'), +(36, 'JanVince.SmallContactForm', 'comment', '1.3.0', 'Fixed some typos', '2023-06-09 18:21:42'), +(37, 'JanVince.SmallContactForm', 'comment', '1.3.1', 'Added default value for getTranslated() method', '2023-06-09 18:21:42'), +(38, 'JanVince.SmallContactForm', 'comment', '1.3.2', 'Added custom send button wrapper class', '2023-06-09 18:21:42'), +(39, 'JanVince.SmallContactForm', 'comment', '1.4.0', 'Added redirect option after successful submit (internal and external URL)', '2023-06-09 18:21:42'), +(40, 'JanVince.SmallContactForm', 'comment', '1.4.1', 'Minor UI fix (thanks Szabó Gergő)', '2023-06-09 18:21:42'), +(41, 'JanVince.SmallContactForm', 'comment', '1.4.2', 'Added support for default translated mail templates (Czech and English for now)', '2023-06-09 18:21:42'), +(42, 'JanVince.SmallContactForm', 'comment', '1.4.3', 'Fixed translation of mail templates description in Settings > Mail templates', '2023-06-09 18:21:42'), +(43, 'JanVince.SmallContactForm', 'comment', '1.4.4', 'Fixed array of enabledLocales', '2023-06-09 18:21:42'), +(44, 'JanVince.SmallContactForm', 'comment', '1.4.5', 'Fixed email template check', '2023-06-09 18:21:42'), +(45, 'JanVince.SmallContactForm', 'comment', '1.4.5', 'Added default EN locale to enabled locales array', '2023-06-09 18:21:42'), +(46, 'JanVince.SmallContactForm', 'comment', '1.4.6', 'Removed field type restriction for Fields mapping', '2023-06-09 18: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 18: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 18:21:42'), +(49, 'JanVince.SmallContactForm', 'comment', '1.4.8', 'Added checkbox field type', '2023-06-09 18:21:42'), +(50, 'JanVince.SmallContactForm', 'comment', '1.4.8', 'Scoreboard last message time format (thanks Szabó Gergő)', '2023-06-09 18:21:42'), +(51, 'JanVince.SmallContactForm', 'comment', '1.4.9', 'Added scoreboard button to quickly open form settings', '2023-06-09 18:21:42'), +(52, 'JanVince.SmallContactForm', 'comment', '1.4.10', 'Fixed typo in lang filename', '2023-06-09 18: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 18:21:42'), +(54, 'JanVince.SmallContactForm', 'comment', '1.4.11', 'Updated default autoreply mail templates to include fieldsDetail array', '2023-06-09 18:21:42'), +(55, 'JanVince.SmallContactForm', 'comment', '1.4.11', 'Added function to detect non-defined fields in sent data', '2023-06-09 18:21:42'), +(56, 'JanVince.SmallContactForm', 'comment', '1.4.11', 'Updated README.md file', '2023-06-09 18: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 18:21:42'), +(58, 'JanVince.SmallContactForm', 'comment', '1.5.0', 'Fixed some typos', '2023-06-09 18:21:42'), +(59, 'JanVince.SmallContactForm', 'comment', '1.5.0', 'Updated README.md file', '2023-06-09 18:21:42'), +(60, 'JanVince.SmallContactForm', 'comment', '1.5.1', 'Fixed flash message visibility when where are some errors', '2023-06-09 18:21:42'), +(61, 'JanVince.SmallContactForm', 'comment', '1.5.2', 'Fixed flash error for IP protection visibility', '2023-06-09 18: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 18:21:42'), +(63, 'JanVince.SmallContactForm', 'comment', '1.5.4', 'Added option to mark selected messages as read', '2023-06-09 18:21:42'), +(64, 'JanVince.SmallContactForm', 'comment', '1.5.5', 'Changed JSON type for repeater DB column', '2023-06-09 18:21:42'), +(65, 'JanVince.SmallContactForm', 'comment', '1.5.6', 'Removed value attribute in textarea field', '2023-06-09 18:21:42'), +(66, 'JanVince.SmallContactForm', 'comment', '1.5.7', 'Added component alias to id attributes for multi-form usage', '2023-06-09 18:21:42'), +(67, 'JanVince.SmallContactForm', 'comment', '1.5.8', 'Fixed typo in lang files', '2023-06-09 18:21:42'), +(68, 'JanVince.SmallContactForm', 'comment', '1.5.9', 'Added direct link to messages list from dashboard widget', '2023-06-09 18:21:42'), +(69, 'JanVince.SmallContactForm', 'comment', '1.6.0', 'Added Google reCAPTCHA validation', '2023-06-09 18:21:42'), +(70, 'JanVince.SmallContactForm', 'comment', '1.6.1', 'Changed All messages large indicator to New messages in scoreboard', '2023-06-09 18: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 18:21:42'), +(72, 'JanVince.SmallContactForm', 'comment', '1.7.0', 'Added option to specify